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

:root {
  --bg: #f6f2ef;
  --bg-strong: #fbf8f6;
  --surface: rgba(255, 252, 250, 0.88);
  --surface-solid: #fffdfb;
  --text: #2f2423;
  --muted: #856c66;
  --line: rgba(87, 60, 56, 0.12);
  --line-strong: rgba(87, 60, 56, 0.18);
  --primary: #b17883;
  --primary-dark: #99616c;
  --primary-soft: #ecdde0;
  --gold: #d8bc9a;
  --shadow: 0 20px 55px rgba(74, 51, 48, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 194, 199, 0.14), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(216, 188, 154, 0.11), transparent 22%),
    linear-gradient(180deg, #fbf8f6 0%, #f6f2ef 100%);
  line-height: 1.72;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: white; padding: 0.75rem 1rem; border-radius: 999px; z-index: 99; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 246, 0.84);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 102px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(177, 120, 131, 0.11);
  border: 1px solid rgba(177, 120, 131, 0.15);
  color: var(--primary);
  flex: 0 0 auto;
}
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong,
.footer-brand strong,
.hero-title,
.section h2,
.page-hero h1,
.page-hero h2,
.service-card h3,
.value-card h3,
.process-step h3,
.testimonial-card .quote,
.faq-item summary,
.card-title,
.legal h2,
.contact-panel h2,
.footer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.brand-copy strong,
.footer-brand strong {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-copy span,
.footer-brand span,
.footnote,
.muted { color: var(--muted); font-size: 0.92rem; }

.brand-logo {
  display: block;
  width: clamp(180px, 24vw, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.03));
}
.nav-shell { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--primary-dark);
  background: rgba(177, 120, 131, 0.09);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.button:hover,
.button:focus-visible,
button.button:hover,
button.button:focus-visible { transform: translateY(-1px); }
.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 30px rgba(177, 120, 131, 0.24);
}
.button-primary:hover,
.button-primary:focus-visible { background: var(--primary-dark); }
.button-secondary {
  border-color: rgba(87, 60, 56, 0.12);
  background: rgba(255, 255, 255, 0.44);
}
.button-secondary:hover,
.button-secondary:focus-visible { background: rgba(255, 255, 255, 0.72); }
.button.small { min-height: 46px; padding: 0.72rem 1.15rem; }

.nav-links a.button.button-primary,
.nav-links a.button.button-primary:hover,
.nav-links a.button.button-primary:focus-visible,
.nav-links a.button.button-primary:visited {
  color: #fff;
}


main { overflow: clip; }
.hero {
  padding: 4.6rem 0 2.6rem;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  max-width: 760px;
}
.badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #c09da4;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.9rem;
}
.hero-title,
.page-hero h1 {
  font-size: clamp(3.55rem, 6vw, 6rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 1rem 0 1.3rem;
}
.hero-title em,
.page-hero h1 em,
.highlight-italic {
  display: block;
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}
.hero-text,
.lead,
.page-hero p {
  font-size: 1.08rem;
  max-width: 44rem;
  color: #8a6f67;
}
.hero-actions,
.inline-actions,
.contact-actions,
.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 2rem; }
.hero-aside {
  min-height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(87, 60, 56, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(245, 236, 233, 0.96));
}
.hero-aside img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}


.section { padding: 4.75rem 0; }
.section-tight { padding-top: 2.4rem; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0)); }
.section-head { max-width: 760px; margin-bottom: 2.1rem; }
.section h2,
.page-hero h2,
.contact-panel h2,
.legal h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 0.55rem 0 1rem;
}

.card-grid,
.approach-grid,
.services-grid,
.values-grid,
.process-grid,
.testimonials-grid,
.faq-preview-grid,
.footer-grid,
.contact-grid,
.links-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid,
.values-grid,
.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.approach-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr); }
.footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr; align-items: start; }
.links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.surface,
.recognition-card,
.approach-card,
.service-card,
.value-card,
.process-step,
.testimonial-card,
.faq-teaser,
.contact-panel,
.cta-banner,
.legal-card,
.notice,
.link-card {
  background: var(--surface);
  border: 1px solid rgba(87, 60, 56, 0.08);
  box-shadow: var(--shadow);
}
.recognition-card,
.approach-card,
.service-card,
.value-card,
.process-step,
.testimonial-card,
.faq-teaser,
.contact-panel,
.cta-banner,
.legal-card,
.link-card {
  border-radius: var(--radius-lg);
  padding: 1.65rem;
}
.recognition-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.icon-bullet,
.service-symbol {
  flex: 0 0 auto;
  color: var(--gold);
}
.recognition-card strong,
.value-card h3,
.process-step h3,
.service-card h3,
.faq-teaser h3,
.link-card h3 {
  display: block;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.02;
  font-weight: 500;
}
.recognition-card p,
.value-card p,
.process-step p,
.service-card p,
.faq-teaser p,
.testimonial-card p,
.contact-panel p,
.legal-card p,
.link-card p { color: var(--muted); margin: 0.6rem 0 0; }

.approach-card .step-number,
.process-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(177, 120, 131, 0.11);
  margin-bottom: 1rem;
}
.approach-card p,
.process-step p { margin-top: 0.7rem; }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.service-card .service-symbol {
  font-size: 1.25rem;
  color: var(--primary);
}
.service-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.service-heading h3 {
  margin: 0;
}
.service-price {
  flex: 0 0 auto;
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--primary-dark);
  background: rgba(177, 120, 131, 0.10);
  border: 1px solid rgba(87, 60, 56, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  white-space: nowrap;
}
.feature-list,
.footer-links,
.contact-list,
.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li,
.contact-list li,
.legal-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 0.8rem;
  color: var(--muted);
}
.feature-list li::before,
.contact-list li::before,
.legal-list li::before {
  content: "✦";
  color: var(--gold);
  flex: 0 0 auto;
}
.service-link,
.text-link {
  color: var(--primary-dark);
  font-weight: 600;
}
.service-link:hover,
.text-link:hover { text-decoration: underline; }

.value-card .value-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(177, 120, 131, 0.10);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card .quote {
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 1rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.testimonial-meta strong { display: block; }
.testimonial-meta span { color: var(--muted); font-size: 0.95rem; }

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(87, 60, 56, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 1rem; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-size: 1.85rem;
  line-height: 1.04;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "−"; }
.faq-content {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
}

.cta-banner {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 188, 154, 0.22), transparent 70%);
}

.page-hero { padding: 4.2rem 0 2.2rem; }
.page-hero-panel {
  background: var(--surface);
  border: 1px solid rgba(87, 60, 56, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-panel,
.legal-card,
.link-card { height: 100%; }
.form-grid {
  display: grid;
  gap: 1rem;
}
label span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(87, 60, 56, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}
textarea { min-height: 160px; resize: vertical; }
.notice {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: var(--muted);
}
.notice.is-visible { display: block; }
.notice.success { background: rgba(216, 188, 154, 0.18); }
.notice.error { background: rgba(177, 120, 131, 0.12); }

.footer {
  padding: 4rem 0 1.6rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
}
.footer-brand { display: inline-flex; align-items: flex-start; gap: 0.85rem; }
.footer-title {
  font-size: 1.7rem;
  line-height: 1.05;
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.footer-links a {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
}
.footer-links a:hover { color: var(--primary-dark); }
.footer-disclaimer {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.footer-note {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-layout,
  .contact-grid,
  .footer-grid,
  .services-grid,
  .approach-grid,
  .process-grid,
  .card-grid,
  .values-grid,
  .testimonials-grid,
  .faq-preview-grid,
  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-aside { min-height: 280px; order: -1; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 1rem;
    width: min(92vw, 340px);
    padding: 0.85rem;
    border-radius: 24px;
    background: rgba(255, 252, 250, 0.98);
    border: 1px solid rgba(87, 60, 56, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-shell { position: relative; }
  .nav-links a { width: 100%; }
  .hero,
  .section,
  .page-hero,
  .footer { padding-left: 0; padding-right: 0; }
  .hero-title,
  .page-hero h1 { font-size: clamp(3rem, 12vw, 4.6rem); }
}

@media (max-width: 680px) {
  .service-heading { flex-direction: column; gap: 0.65rem; }
  .service-price { white-space: normal; }

  .card-grid,
  .values-grid,
  .testimonials-grid,
  .approach-grid,
  .process-grid,
  .faq-preview-grid,
  .services-grid,
  .contact-grid,
  .footer-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }
  .header-inner { min-height: 82px; }
  .brand-logo { width: clamp(150px, 45vw, 220px); }
  .brand-copy span { display: none; }
  .hero-title,
  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .faq-item summary { font-size: 1.55rem; }
  .button,
  button.button { width: 100%; }
  .hero-actions,
  .inline-actions,
  .contact-actions { flex-direction: column; }
  .cta-banner { padding: 1.5rem; }
}


.social-icon-button {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(87, 60, 56, 0.12);
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
  flex: 0 0 auto;
}

.social-icon-button:hover,
.social-icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(177, 120, 131, 0.38);
  background: rgba(255,255,255,0.98);
}

.social-icon-button img,
.social-icon-button svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  object-fit: contain;
}

.social-logo-button {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.social-logo-button img {
  width: 100%;
  height: 100%;
}

.social-icon-button-large {
  width: 3.35rem;
  height: 3.35rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-links .social-icon-button {
  margin-top: 0.15rem;
}


.contact-inline-logo {
  width: 2.35rem;
  height: 2.35rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.contact-list .contact-inline-logo {
  display: inline-flex;
  position: relative;
  top: 0.2rem;
}
