:root {
  --ink: #17383c;
  --ink-2: #244c50;
  --gold: #c7a06e;
  --gold-2: #e8d7bd;
  --cream: #faf7f0;
  --cream-2: #f4eee4;
  --white: #fffdf8;
  --muted: #6b7777;
  --line: rgba(23, 56, 60, .12);
  --shadow: 0 24px 70px rgba(23, 56, 60, .14);
  --radius: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199,160,110,.14), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf2 42%, var(--cream) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; }

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.page-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .45;
  z-index: -1;
}
.page-glow-one {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 80px;
  background: rgba(199,160,110,.18);
}
.page-glow-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 10%;
  background: rgba(23,56,60,.10);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 28px rgba(23,56,60,.08);
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  margin-top: 4px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.38);
  border-radius: 999px;
}
.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: .92rem;
  transition: background .25s ease, color .25s ease;
}
.site-nav a:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #2f6061);
  box-shadow: 0 18px 36px rgba(23,56,60,.22);
}
.btn-primary:hover { box-shadow: 0 22px 44px rgba(23,56,60,.28); }
.btn-outline {
  color: var(--ink);
  border-color: rgba(199,160,110,.46);
  background: rgba(255,255,255,.42);
}
.btn-outline:hover { background: #fff; }
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.34);
}
.btn-ghost:hover { background: rgba(255,255,255,.72); }
.btn-light {
  background: #fffaf2;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.btn-small { min-height: 44px; padding: 10px 16px; }

.hero { padding-top: 78px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 74px;
}
.eyebrow, .mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 850px;
  margin: 20px 0 26px;
}
h2 {
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  margin: 12px 0 18px;
}
h3 { line-height: 1.2; }
.hero-text {
  color: var(--ink-2);
  font-size: 1.12rem;
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-tags span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.44);
  color: var(--ink-2);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .88rem;
}

.hero-visual { position: relative; }
.portrait-card {
  position: relative;
  isolation: isolate;
  max-width: 500px;
  margin-left: auto;
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 12% -7% -7% 12%;
  background: linear-gradient(135deg, rgba(199,160,110,.24), rgba(23,56,60,.12));
  border-radius: 46% 54% 32% 68% / 52% 38% 62% 48%;
  z-index: -2;
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(199,160,110,.42);
  border-radius: 45% 55% 54% 46% / 42% 38% 62% 58%;
  z-index: -1;
}
.portrait-orbit {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -34px;
  top: 12px;
  border: 1px solid rgba(199,160,110,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.30);
}
.portrait {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 46% 54% 40% 60% / 53% 40% 60% 47%;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255,255,255,.52);
}
.signature-card {
  position: absolute;
  left: -48px;
  bottom: -35px;
  width: min(310px, 68%);
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255,253,248,.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 55px rgba(23,56,60,.16);
  border: 1px solid rgba(255,255,255,.62);
}
.signature-card img { width: 100%; border-radius: 16px; }

.trust-bar { padding: 12px 0 36px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-grid div {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.trust-grid strong { display: block; font-size: 1.02rem; }
.trust-grid span { color: var(--muted); font-size: .92rem; }

.two-columns, .process-grid, .location-grid, .faq-grid, .form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 620px;
}
.centered { text-align: center; max-width: 810px; margin: 0 auto 44px; }
.centered p { margin-inline: auto; }
.about-card, .location-card, .online-card, .form-wrapper {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(23,56,60,.08);
}
.about-card { padding: 42px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff 0 24%, var(--gold) 26% 100%);
  box-shadow: 0 0 0 5px rgba(199,160,110,.13);
}

.soft-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(244,238,228,.68));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(23,56,60,.10);
  background: rgba(255,253,248,.76);
  box-shadow: 0 18px 46px rgba(23,56,60,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: rgba(199,160,110,.13);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(23,56,60,.12);
  border-color: rgba(199,160,110,.32);
}
.service-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199,160,110,.13);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin: 0; }

.process .btn { margin-top: 14px; }
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.50);
  border: 1px solid var(--line);
}
.step strong {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #d9b98e);
  box-shadow: 0 12px 24px rgba(199,160,110,.22);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

.location-section { padding-top: 70px; }
.location-grid { align-items: stretch; }
.location-card, .online-card { padding: 44px; }
.location-card p { color: var(--ink-2); font-size: 1.05rem; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.online-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(23,56,60,.96), rgba(38,78,80,.92));
  color: #fffaf2;
  overflow: hidden;
  position: relative;
}
.online-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(199,160,110,.20);
}
.online-card img {
  width: 240px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  padding: 8px;
  margin-bottom: 24px;
}
.online-card p { color: rgba(255,250,242,.78); }

.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.54);
  border-radius: 24px;
  padding: 20px 22px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 14px 0 0; }

.final-cta { padding-top: 40px; }
.final-card {
  text-align: center;
  border-radius: 42px;
  padding: clamp(42px, 7vw, 76px) 24px;
  background:
    radial-gradient(circle at top right, rgba(199,160,110,.22), transparent 26rem),
    linear-gradient(135deg, #17383c, #28595a);
  color: #fffaf2;
  box-shadow: 0 34px 84px rgba(23,56,60,.22);
  overflow: hidden;
}
.final-card img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin: 0 auto 22px;
  border-radius: 28px;
  background: rgba(255,253,248,.93);
  padding: 8px;
}
.final-card h2 { max-width: 760px; margin-inline: auto; }
.final-card p { color: rgba(255,250,242,.78); max-width: 620px; margin: 0 auto 28px; }

.contact-form-section { padding-top: 0; }
.form-wrapper {
  padding: 42px;
  align-items: center;
}
.form-wrapper h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.form-wrapper p { color: var(--muted); }
.quick-form { display: grid; gap: 14px; }
.quick-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--ink-2);
}
.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  border: 1px solid rgba(23,56,60,.14);
  background: rgba(255,255,255,.74);
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: rgba(199,160,110,.9);
  box-shadow: 0 0 0 4px rgba(199,160,110,.14);
}
.quick-form textarea { resize: vertical; }

.site-footer {
  padding: 46px 0 92px;
  border-top: 1px solid var(--line);
  background: rgba(255,253,248,.42);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.site-footer img { width: 220px; border-radius: 18px; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: .94rem; }
.site-footer a { display: block; margin-top: 8px; }
.site-footer strong { display: block; margin-bottom: 10px; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #17383c, #2f6061);
  box-shadow: 0 18px 40px rgba(23,56,60,.28);
  font-weight: 800;
}
.whatsapp-float::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9b98e;
  box-shadow: 0 0 0 6px rgba(217,185,142,.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .section { padding: 78px 0; }
  .header-inner { min-height: 76px; }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    border-radius: 24px;
    padding: 14px;
    background: rgba(255,253,248,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 13px 14px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.56);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: .2s ease;
  }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-cta { display: none; }
  .hero-grid,
  .two-columns,
  .process-grid,
  .location-grid,
  .faq-grid,
  .form-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 58px; }
  .portrait-card { margin-inline: auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 66px 0; }
  .brand { min-width: auto; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.16rem; }
  .brand small { font-size: .68rem; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.6rem); }
  h2 { line-height: 1.02; }
  .hero-actions .btn, .location-actions .btn, .quick-form .btn { width: 100%; }
  .hero-tags span { font-size: .78rem; }
  .signature-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
    width: 76%;
  }
  .portrait-orbit { display: none; }
  .trust-bar { padding-top: 48px; }
  .about-card, .location-card, .online-card, .form-wrapper { padding: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .step { grid-template-columns: 1fr; }
  .online-card img { width: 190px; }
  .final-card { border-radius: 30px; }
  .whatsapp-float { right: 14px; left: 14px; bottom: 14px; }
  .site-footer { padding-bottom: 98px; }
}
