:root {
  --ink: #13252c;
  --ink-soft: #526269;
  --paper: #f7f8f6;
  --white: #ffffff;
  --teal: #0f3340;
  --teal-2: #164b58;
  --aqua: #a9d8d5;
  --aqua-soft: #e1f0ee;
  --line: rgba(19, 37, 44, 0.13);
  --shadow: 0 24px 70px rgba(11, 48, 58, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 1000;
  background: #fff;
  color: var(--teal);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { top: 18px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 246, .86);
  border-bottom: 1px solid rgba(19,37,44,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 45px; height: 45px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--teal);
  font: 700 21px/1 Georgia, serif;
  box-shadow: 0 10px 26px rgba(15,51,64,.18);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font: 700 20px/1.1 Georgia, "Times New Roman", serif;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #34484f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:hover { color: var(--teal); }
.main-nav .nav-cta {
  padding: 11px 17px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,51,64,.14), transparent);
}
.hero-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-decor-one {
  width: 430px; height: 430px;
  right: -180px; top: 35px;
  background: rgba(169,216,213,.29);
  filter: blur(8px);
}
.hero-decor-two {
  width: 250px; height: 250px;
  left: -140px; bottom: -70px;
  border: 44px solid rgba(22,75,88,.05);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}
.hero-copy { max-width: 620px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.closing-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.04em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(50px, 7.4vw, 94px);
  line-height: .92;
}
.hero h1 span {
  display: inline-block;
  color: var(--teal-2);
  font-size: .72em;
  font-style: italic;
}
.hero-address {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 15px 34px rgba(15,51,64,.16);
}
.button-primary:hover { background: #0a2b36; }
.button-secondary {
  color: var(--teal);
  background: rgba(255,255,255,.78);
  border-color: var(--line);
}
.button-icon { font-size: 15px; }

.hero-card {
  max-width: 500px;
  justify-self: end;
  padding: 12px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(19,37,44,.1);
  border-radius: 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.photo-frame {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #efefed;
  border-radius: 29px;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f3f3f1;
}
.hero-card-footer {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px 2px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--aqua); }

.section { padding: 108px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.location-section { background: var(--white); }
.location-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  max-width: 900px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  background: linear-gradient(135deg, #f4faf9 0%, #e8f3f2 100%);
  border: 1px solid rgba(15,51,64,.1);
  border-radius: var(--radius-lg);
}
.location-card::after {
  content: "";
  position: absolute;
  width: 230px; height: 230px;
  right: -90px; bottom: -120px;
  border-radius: 50%;
  border: 36px solid rgba(15,51,64,.05);
}
.location-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 21px;
  color: var(--teal);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15,51,64,.10);
}
.location-icon svg { width: 30px; fill: currentColor; }
.card-kicker {
  margin: 0 0 8px;
  color: var(--teal-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.location-card h3,
.contact-card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}
.location-card p:last-child {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 430px; height: 430px;
  top: -220px; right: -140px;
  border-radius: 50%;
  background: rgba(169,216,213,.12);
}
.section-heading-light .eyebrow { color: var(--aqua); }
.section-heading-light h2 { color: #fff; }
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.contact-card {
  grid-column: span 2;
  min-height: 254px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  transition: transform .25s ease, background .25s ease;
}
.contact-card:nth-child(4),
.contact-card:nth-child(5) { grid-column: span 3; }
.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.09);
}
.contact-symbol {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 30px;
  border-radius: 15px;
  color: var(--teal);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.contact-card .card-kicker { color: var(--aqua); }
.contact-card h3 {
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  overflow-wrap: anywhere;
}
.contact-card h3.email { font-size: clamp(17px, 2vw, 24px); }
.contact-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--aqua);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.contact-card a:hover { color: #fff; }

.closing-section { padding: 92px 0; background: var(--paper); }
.closing-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(14,48,58,.07);
}
.closing-card h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.closing-card p:last-child { margin: 17px 0 0; color: var(--ink-soft); }
.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.text-link {
  padding-left: 4px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255,255,255,.76);
  background: #0a2730;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  margin-bottom: 18px;
  color: #fff;
  font: 700 26px/1.1 Georgia, serif;
}
.footer-brand span { color: var(--aqua); font-style: italic; font-weight: 500; }
.site-footer p { margin: 0; }
.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(255,255,255,.76);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
}
.footer-bottom a { margin: 0; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--aqua);
  border: 4px solid rgba(255,255,255,.82);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(9,38,48,.24);
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .header-inner { min-height: 74px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(15,51,64,.14);
    transition: .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 12px 13px; border-radius: 12px; }
  .main-nav a:hover { background: var(--aqua-soft); }
  .main-nav .nav-cta { text-align: center; }
  .hero { padding: 52px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { width: min(100%, 560px); justify-self: start; }
  .section { padding: 84px 0; }
  .contact-card { grid-column: span 3; }
  .contact-card:nth-child(5) { grid-column: span 6; }
  .closing-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 9px; }
  .hero h1 { font-size: clamp(48px, 16vw, 70px); }
  .hero-address { margin-top: 24px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-card { padding: 9px; border-radius: 29px; }
  .photo-frame { border-radius: 22px; }
  .hero-card-footer { font-size: 10px; }
  .section-heading { margin-bottom: 30px; }
  .location-card {
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 26px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card,
  .contact-card:nth-child(4),
  .contact-card:nth-child(5) { grid-column: auto; min-height: 225px; }
  .contact-card { padding: 24px; }
  .closing-section { padding: 64px 0; }
  .closing-card { border-radius: 26px; }
  .closing-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
