/*
 * Theme Name:  Bon Kwido Child
 * Theme URI:   https://[WEBSITE-URL]
 * Description: Child theme for Bon Kwido property management in Curacao.
 * Author:      [DEVELOPER NAME]
 * Author URI:  https://[DEVELOPER-URL]
 * Template:    generatepress
 * Version:     1.0.0
 * Text Domain: bon-kwido
 */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --clr-teal: #0d7c8c;
  --clr-teal-dark: #0a6474;
  --clr-teal-light: #e3f4f6;
  --clr-coral: #e87040;
  --clr-coral-dark: #c85a2c;
  --clr-gold: #d4a853;
  --clr-sand: #faf8f4;
  --clr-sand-dark: #f0ede8;
  --clr-white: #ffffff;
  --clr-text: #1a2332;
  --clr-text-mid: #4a5568;
  --clr-text-light: #718096;
  --clr-border: #e2e8f0;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-full: 999px;
  --shadow-sm: 0 2px 8px rgba(13, 124, 140, 0.08);
  --shadow-md: 0 6px 24px rgba(13, 124, 140, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 124, 140, 0.18);
  --ease: all 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  background: var(--clr-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: var(--clr-teal);
  text-decoration: none;
  transition: var(--ease);
}

a:hover {
  color: var(--clr-teal-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--clr-coral);
  color: var(--clr-white);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  z-index: 10000;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

.container--narrow {
  max-width: 820px;
  margin-inline: auto;
}

.container--wide {
  max-width: 1400px;
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-teal {
  color: var(--clr-teal);
}

.text-coral {
  color: var(--clr-coral);
}

.text-gold {
  color: var(--clr-gold);
}

.text-white {
  color: var(--clr-white);
}

.bg-sand {
  background-color: var(--clr-sand);
}

.bg-teal {
  background-color: var(--clr-teal);
}

.bg-dark {
  background-color: var(--clr-text);
}

.bg-white {
  background-color: var(--clr-white);
}

.section-pad {
  padding-block: var(--sp-xl);
}

.section-pad--lg {
  padding-block: var(--sp-2xl);
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-teal);
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--clr-text-mid);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  transition: var(--ease);
}

.btn-primary {
  color: var(--clr-white);
  background: var(--clr-coral);
}

.btn-primary:hover {
  color: var(--clr-white);
  background: var(--clr-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 112, 64, 0.35);
}

.btn-secondary {
  color: var(--clr-teal);
  background: transparent;
  border-color: var(--clr-teal);
}

.btn-secondary:hover {
  color: var(--clr-white);
  background: var(--clr-teal);
}

.btn-ghost {
  color: var(--clr-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  color: var(--clr-text);
  background: var(--clr-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  max-width: 1200px;
  margin-inline: auto;
  padding: 1rem var(--sp-md);
}

.site-logo {
  flex-shrink: 0;
}

.site-logo .custom-logo {
  max-height: 58px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
}

.logo-text span {
  color: var(--clr-coral);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: inline-block;
  padding: 0.35rem 0;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text);
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--clr-teal);
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--r-full);
}

.site-footer {
  background: var(--clr-text);
  color: var(--clr-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--sp-lg);
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-2xl) var(--sp-md) var(--sp-xl);
}

.footer-brand .logo-text {
  color: var(--clr-white);
}

.footer-tagline {
  max-width: 280px;
  margin-top: 0.75rem;
  margin-bottom: var(--sp-md);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
}

.social-links a:hover {
  background: var(--clr-teal);
}

.footer-heading {
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--clr-coral);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact strong {
  color: var(--clr-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  overflow: hidden;
  background: var(--clr-teal-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("[HERO IMAGE URL]");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 100, 116, 0.85) 0%, rgba(13, 124, 140, 0.55) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
  padding: var(--sp-2xl) var(--sp-md);
  color: var(--clr-white);
}

.hero-content .eyebrow {
  color: var(--clr-gold);
}

.hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.hero-sub {
  max-width: 560px;
  margin-bottom: var(--sp-lg);
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

.trust-item {
  padding: 1.5rem var(--sp-md);
  text-align: center;
  border-right: 1px solid var(--clr-border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-teal);
}

.trust-label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--clr-text-mid);
}

.section-header {
  margin-bottom: var(--sp-lg);
  text-align: center;
}

.col-2,
.col-3,
.col-4 {
  display: grid;
  gap: var(--sp-lg);
}

.col-2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.card {
  padding: var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card {
  border-top: 3px solid var(--clr-teal);
}

.service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  background: var(--clr-teal-light);
  border-radius: var(--r-md);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-card p,
.testimonial-text,
.why-content p,
.timeline-body p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
}

.testimonial-card {
  padding: var(--sp-lg);
  background: var(--clr-white);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  margin-bottom: 0.75rem;
  color: var(--clr-gold);
  letter-spacing: 0.1em;
}

.testimonial-text {
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 0.97rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-meta {
  font-size: 0.82rem;
  color: var(--clr-text-light);
}

.step-card {
  position: relative;
  padding-left: 4.5rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--clr-teal);
  color: var(--clr-white);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--sp-md);
  background: var(--clr-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--clr-teal-light);
  border-radius: var(--r-md);
  font-size: 1.8rem;
}

.why-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cta-section {
  padding-block: var(--sp-2xl);
  color: var(--clr-white);
  text-align: center;
  background: linear-gradient(135deg, var(--clr-teal) 0%, var(--clr-teal-dark) 100%);
}

.cta-section h2 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto var(--sp-lg);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.cta-banner {
  padding: var(--sp-md);
  color: var(--clr-white);
  background: var(--clr-coral);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

.cta-banner p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--r-md);
  background: var(--clr-white);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  appearance: none;
  transition: var(--ease);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(13, 124, 140, 0.12);
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  padding: 0.95rem 2.5rem;
  border: 0;
  border-radius: var(--r-full);
  background: var(--clr-coral);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
}

.wpcf7 input[type="submit"]:hover {
  background: var(--clr-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 112, 64, 0.35);
}

.wpcf7 .wpcf7-response-output {
  padding: 1rem 1.5rem !important;
  border: 0 !important;
  border-radius: var(--r-md);
  background: var(--clr-teal-light);
  color: var(--clr-teal-dark) !important;
  font-family: var(--font-heading);
  font-weight: 600;
}

.form-card {
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  list-style: none;
  cursor: pointer;
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  color: var(--clr-teal);
  font-size: 1.5rem;
}

details[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--clr-text-mid);
  font-size: 0.95rem;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--clr-teal);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--r-full);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--ease);
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--clr-white);
}

.page-hero {
  padding-block: var(--sp-2xl) var(--sp-xl);
  color: var(--clr-white);
  text-align: center;
  background: linear-gradient(135deg, var(--clr-teal-dark) 0%, var(--clr-teal) 100%);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
  color: var(--clr-white);
}

.page-hero .breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .lead {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.stats-strip {
  padding-block: var(--sp-lg);
  background: var(--clr-teal);
  color: var(--clr-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

.team-card {
  overflow: hidden;
  text-align: center;
  background: var(--clr-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--clr-sand-dark);
}

.team-info {
  padding: var(--sp-md);
}

.team-name {
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.team-role {
  color: var(--clr-teal);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-sidebar {
  padding: var(--sp-lg);
  background: var(--clr-sand);
  border-radius: var(--r-lg);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--clr-teal-light);
  color: var(--clr-teal);
  border-radius: var(--r-md);
  font-size: 1.1rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: var(--clr-teal-light);
}

.timeline-step {
  position: relative;
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--clr-teal);
  color: var(--clr-white);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.timeline-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.7rem;
  background: var(--clr-teal-light);
  color: var(--clr-teal);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .col-4,
  .col-3,
  .footer-grid,
  .trust-bar-inner,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout,
  .col-2 {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    padding-block: 1rem;
    border-top: 1px solid var(--clr-border);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-top: 1px solid var(--clr-border);
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: var(--sp-xl) var(--sp-sm);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .col-3,
  .col-2,
  .footer-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding-block: var(--sp-xl) var(--sp-lg);
  }
}

@media (max-width: 480px) {
  .trust-bar-inner,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --clr-teal: #0a3b43;
  --clr-teal-dark: #072f35;
  --clr-teal-light: #edf5f4;
  --clr-coral: #ea7d5d;
  --clr-coral-dark: #d96849;
  --clr-gold: #d5a64a;
  --clr-sand: #fbf7f0;
  --clr-sand-dark: #efe6d8;
  --clr-text: #1c2730;
  --clr-text-mid: #5f6770;
  --clr-border: rgba(10, 59, 67, 0.12);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --shadow-sm: 0 8px 28px rgba(7, 47, 53, 0.08);
  --shadow-md: 0 20px 50px rgba(7, 47, 53, 0.12);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(213, 166, 74, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 58%, #fbf7f0 100%);
}

body.home.page-template-default .site-header {
  display: none;
}

body.home.page-template-default .site.grid-container.container,
body.home.page-template-default .site-content,
body.home.page-template-default .inside-article,
body.home.page-template-default .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.btn {
  min-height: 54px;
  padding: 0.95rem 1.75rem;
  border-radius: 0;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--clr-coral);
}

.btn-outline-gold {
  color: var(--clr-gold);
  border: 1px solid rgba(213, 166, 74, 0.7);
  background: rgba(7, 47, 53, 0.28);
}

.btn-outline-gold:hover {
  color: var(--clr-teal-dark);
  background: var(--clr-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(7, 47, 53, 0.98), rgba(8, 60, 68, 0.98));
  border-bottom: 1px solid rgba(213, 166, 74, 0.16);
  backdrop-filter: blur(10px);
}

body.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(90deg, rgba(7, 47, 53, 0.98), rgba(8, 60, 68, 0.92));
}

.header-inner {
  max-width: 1440px;
  padding: 1.15rem 2rem;
  gap: 1.25rem;
}

.site-logo a {
  display: inline-flex;
  align-items: center;
}

.brand-logo-image {
  display: block;
  width: min(365px, 100%);
  height: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  gap: 1.75rem;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: #fff;
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 2px;
  background: var(--clr-gold);
}

.header-contact {
  display: flex;
  align-items: center;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.header-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(213, 166, 74, 0.55);
  border-radius: 999px;
  color: var(--clr-gold);
}

.header-phone__icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.menu-toggle span {
  background: #fff;
}

.site-footer {
  background: linear-gradient(180deg, #0a3640 0%, #072f35 100%);
}

.footer-grid {
  max-width: 1440px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.footer-tagline,
.footer-links a,
.footer-contact p,
.footer-contact a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding-top: 0;
  background: linear-gradient(90deg, #072f35 0%, #0b3940 34%, #0f1f26 100%);
}

.home-shell__header {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(213, 166, 74, 0.16);
  background: linear-gradient(90deg, rgba(7, 47, 53, 0.98), rgba(8, 60, 68, 0.92));
}

.home-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1440px;
  margin-inline: auto;
  padding: 1.15rem 2rem;
}

.home-shell__brand img {
  display: block;
  width: min(365px, 100%);
  height: auto;
}

.home-shell__nav ul {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-shell__nav a,
.home-shell__phone {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-shell__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-shell__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.home-shell__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(213, 166, 74, 0.55);
  border-radius: 999px;
  color: var(--clr-gold);
}

.home-shell__phone-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.home-hero__media,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  background:
    linear-gradient(90deg, rgba(7, 47, 53, 0.82) 0%, rgba(7, 47, 53, 0.68) 34%, rgba(7, 47, 53, 0.05) 58%),
    var(--home-hero-image, var(--bonkwido-hero-image)) right center / 56% auto no-repeat;
}

.home-hero__shade {
  background:
    linear-gradient(180deg, rgba(7, 47, 53, 0.08), rgba(7, 47, 53, 0.7) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 6.75rem 2rem 4rem;
  color: #fff;
}

.home-hero__eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.section-kicker--center {
  text-align: center;
}

.home-hero__title {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  line-height: 0.92;
}

.home-hero__title span,
.home-process h2 em,
.home-expertise__intro h2 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.home-hero__title em {
  display: block;
  color: var(--clr-gold);
  font-style: italic;
  font-weight: 500;
}

.home-hero__copy {
  max-width: 520px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.75;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  padding-right: 1.3rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-chip strong {
  display: block;
  color: #fff;
}

.trust-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(213, 166, 74, 0.5);
  border-radius: 999px;
  color: var(--clr-gold);
}

.trust-chip__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.home-services {
  position: relative;
  margin-top: -2.4rem;
  z-index: 2;
}

.home-services .container,
.home-expertise__grid,
.home-process .container {
  max-width: 1280px;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-service-card {
  padding: 2rem 1.45rem 1.5rem;
  border: 1px solid rgba(10, 59, 67, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247, 244, 238, 0.96));
  box-shadow: var(--shadow-sm);
}

.home-service-card--coral {
  background: linear-gradient(180deg, rgba(255, 247, 244, 0.98), rgba(252, 244, 239, 0.98));
}

.home-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
}

.home-service-card__icon svg {
  width: 3rem;
  height: 3rem;
}

.home-service-card--teal .home-service-card__icon {
  background: linear-gradient(145deg, #5fa9a8, #2c7a84);
  color: #fff;
}

.home-service-card--coral .home-service-card__icon {
  background: linear-gradient(145deg, #f09b74, #ea7d5d);
  color: #fff;
}

.home-service-card h2 {
  margin-bottom: 0.75rem;
  color: #266772;
  font-size: 2rem;
  line-height: 1;
}

.home-service-card p {
  color: #374151;
  font-size: 0.97rem;
}

.home-service-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2d7a85;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-expertise {
  padding: 4.2rem 0 3rem;
}

.home-expertise__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.55fr;
  gap: 2rem;
  align-items: start;
}

.home-expertise__intro h2,
.home-process h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.96;
  color: #14212a;
}

.home-expertise__intro em,
.home-process h2 em {
  color: var(--clr-gold);
}

.home-expertise__points {
  display: grid;
  gap: 1.25rem;
  padding-top: 1.9rem;
}

.expertise-point {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
}

.expertise-point__icon {
  color: var(--clr-gold);
}

.expertise-point__icon svg {
  width: 2rem;
  height: 2rem;
}

.expertise-point h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.expertise-point p {
  margin: 0;
  color: var(--clr-text-mid);
  font-size: 0.93rem;
}

.home-expertise__feature {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}

.feature-photo {
  min-height: 280px;
  background: var(--home-feature-image, var(--bonkwido-feature-image)) center / cover no-repeat;
}

.feature-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  background: #073742;
  color: #fff;
}

.feature-quote p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-quote span {
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-process {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 6rem;
  background:
    radial-gradient(circle at center, rgba(213, 166, 74, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(251, 247, 240, 0.25) 0%, rgba(251, 247, 240, 0.95) 100%);
}

.home-process__leaf {
  position: absolute;
  bottom: -2rem;
  width: 17rem;
  height: 17rem;
  opacity: 0.38;
  background:
    repeating-radial-gradient(circle at center, transparent 0 11px, rgba(213, 166, 74, 0.6) 12px 13px);
  filter: blur(0.2px);
}

.home-process__leaf--left {
  left: -8rem;
}

.home-process__leaf--right {
  right: -8rem;
}

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 2.4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  background: #3c8c94;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.process-step__number--coral {
  background: var(--clr-coral);
}

.process-step h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--clr-text-mid);
  font-size: 0.93rem;
}

@media (max-width: 1200px) {
  .header-inner,
  .home-hero__inner {
    padding-inline: 1.25rem;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .home-shell__bar {
    padding-inline: 1.25rem;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-services__grid,
  .home-process__steps {
    grid-template-columns: 1fr;
  }

  .home-expertise__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .header-contact,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1rem;
    background: rgba(7, 47, 53, 0.98);
    border: 1px solid rgba(213, 166, 74, 0.18);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .home-hero {
    min-height: 0;
    padding-top: 5.2rem;
  }

  .home-shell__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-shell__nav ul,
  .home-shell__contact {
    flex-wrap: wrap;
  }

  .home-hero__media {
    background:
      linear-gradient(180deg, rgba(7, 47, 53, 0.38), rgba(7, 47, 53, 0.82)),
      var(--home-hero-image, var(--bonkwido-hero-image)) center / cover no-repeat;
  }

  .home-hero__inner {
    padding-top: 4.75rem;
  }

  .home-hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .home-service-card h2 {
    font-size: 1.65rem;
  }

  .home-expertise__feature {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 230px;
  }

  .home-process__leaf {
    display: none;
  }
}
