:root {
  --bg: #f7f3ee;
  --bg-soft: #fdfaf6;
  --navy: #1a2332;
  --text: #1a2332;
  --muted: #7a7268;
  --gold: #c9a96e;
  --coral: #e85d3a;
  --line: rgba(26, 35, 50, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 60px rgba(26, 35, 50, 0.08);
  --shadow-strong: 0 36px 90px rgba(19, 26, 39, 0.16);
  --gutter: clamp(1rem, 4vw, 3.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.25rem, 5vw, 5.8rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.08;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--coral);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0 var(--gutter);
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(26, 35, 50, 0.93);
  box-shadow: 0 12px 36px rgba(19, 26, 39, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: fit-content;
}

.brand img {
  width: clamp(9rem, 14vw, 12rem);
  filter: brightness(0) invert(1);
}

.header-actions,
.nav,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
}

.nav,
.language-switcher {
  gap: 0.15rem;
}

.nav a,
.language-pill {
  padding: 0.65rem 0.95rem;
  color: rgba(247, 243, 238, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav a:hover,
.language-pill:hover,
.language-pill.active {
  color: #f7f3ee;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: #fff;
  background: var(--coral);
  border-radius: 3px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: #f7f3ee;
  background: var(--navy);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.button-primary {
  color: #fff;
  background: var(--coral);
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(232, 93, 58, 0.2);
}

.button-primary:hover,
.header-cta:hover {
  background: #d94f2e;
  box-shadow: 0 18px 36px rgba(232, 93, 58, 0.25);
}

.button-ghost {
  justify-content: flex-start;
  padding-inline: 0;
  color: var(--text);
  background: transparent;
}

.button-ghost::after {
  content: "→";
  margin-left: 0.65rem;
  color: var(--coral);
  transition: transform 180ms ease;
}

.button-ghost:hover::after {
  transform: translateX(0.25rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100svh - 76px);
  background: var(--bg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem, 8vw, 8rem) clamp(2.5rem, 5vw, 5.5rem) 4.5rem;
}

.eyebrow,
.panel-label,
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.3rem;
}

.eyebrow-accent,
.panel-label,
.contact-label {
  color: var(--gold);
}

.eyebrow-coral {
  color: var(--coral);
}

.lead,
.service-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

.hero-copy .lead {
  max-width: 32rem;
  margin: 1.5rem 0 2.2rem;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  min-height: 100%;
  padding: 1.15rem 1rem;
}

.highlight-card + .highlight-card {
  border-left: 1px solid var(--line);
}

.highlight-card span {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.72rem;
}

.highlight-card p {
  color: #4f4a43;
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d5c4 0%, #d4c4b0 52%, #c8b89a 100%);
}

.hero-visual-shell {
  position: relative;
  height: 100%;
  min-height: calc(100svh - 76px);
  padding: 5rem 3.4rem;
}

.hero-visual-main {
  position: absolute;
  inset: 4.8rem 5rem;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.06), rgba(26, 35, 50, 0.3));
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-main picture {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  max-width: 18rem;
  padding: 1.2rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.floating-card-left {
  top: 4.6rem;
  right: 3.8rem;
  background: rgba(247, 243, 238, 0.9);
  backdrop-filter: blur(10px);
}

.floating-card-right {
  top: 12.5rem;
  left: 2.2rem;
  background: rgba(255, 255, 255, 0.92);
}

.floating-card p {
  line-height: 1.7;
}

.moment-row {
  display: grid;
  gap: 0.35rem;
}

.moment-row + .moment-row {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(26, 35, 50, 0.12);
}

.moment-row span {
  color: var(--gold);
}

.marquee-band {
  overflow: hidden;
  background: var(--navy);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  min-width: max-content;
  padding: 0.95rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(247, 243, 238, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 7rem var(--gutter);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
  margin-bottom: 3rem;
}

.service-card,
.contact-panel {
  padding: 1.5rem;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 1.8rem;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.8rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--coral);
  background: rgba(232, 93, 58, 0.08);
  border-radius: 50%;
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0.65rem;
}

.services-section {
  background: var(--bg-soft);
}

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

.service-card-dark {
  background: var(--navy);
}

.service-card-dark h3,
.service-card-dark p,
.service-card-dark .service-index {
  color: #f7f3ee;
}

.service-index {
  display: block;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card-dark .service-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel-dark {
  background: rgba(255, 255, 255, 0.09);
}

.site-footer .contact-panel,
.contact-panel-dark p,
.contact-panel-dark .contact-label,
.contact-panel-dark > a {
  color: #fff;
}

.contact-panel > a {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-label {
  display: block;
  margin-bottom: 0.55rem;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  color: #fff;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.site-footer {
  padding: 5rem var(--gutter) 2rem;
  color: rgba(247, 243, 238, 0.64);
  background: var(--navy);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: 3rem;
}

.footer-contact-area {
  min-width: 0;
}

.footer-heading {
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1.25rem;
}

.site-footer .contact-panel {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  box-shadow: none;
}

.site-footer .contact-panel p {
  color: rgba(247, 243, 238, 0.76);
}

.site-footer .contact-panel > a {
  color: #fff;
}

.footer-brand img {
  width: clamp(16rem, 24vw, 22rem);
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-tag {
  max-width: 34rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgba(247, 243, 238, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-whatsapp {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(5) { transition-delay: 80ms; }

.services-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(6) { transition-delay: 160ms; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 6rem 2rem 3rem; }
  .hero-visual-shell { min-height: 44rem; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 64px;
    padding: 0 var(--gutter);
  }
  .brand img { width: 9rem; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .menu-toggle-lines {
    position: relative;
    display: block;
    width: 1.3rem;
    height: 0.8rem;
  }
  .menu-toggle-lines i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }
  .menu-toggle-lines i:first-child { top: 0.15rem; }
  .menu-toggle-lines i:last-child { top: 0.65rem; }
  .site-header.menu-open .menu-toggle-lines i:first-child { top: 0.4rem; transform: rotate(45deg); }
  .site-header.menu-open .menu-toggle-lines i:last-child { top: 0.4rem; transform: rotate(-45deg); }
  .header-actions {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 1rem var(--gutter) 1.25rem;
    background: rgba(26, 35, 50, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 40px rgba(19, 26, 39, 0.18);
  }
  .site-header.menu-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav,
  .language-switcher { justify-content: center; }
  .nav,
  .language-switcher { overflow-x: auto; scrollbar-width: none; }
  .header-cta { width: 100%; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 3rem; }
  .hero-highlights,
  .services-grid,
  .footer-contact-grid { grid-template-columns: 1fr; }
  .highlight-card + .highlight-card { border-left: 0; border-top: 1px solid var(--line); }
  .hero-visual-shell { min-height: 34rem; padding: 2rem 1rem 3rem; }
  .hero-visual-main { inset: 3rem 1rem; }
  .floating-card { max-width: 15rem; }
  .floating-card-left { top: 1rem; right: 1rem; }
  .floating-card-right { top: auto; bottom: 2rem; left: 1rem; }
  .site-footer { padding: 4rem var(--gutter) 2rem; }
  .footer-bottom { flex-direction: column; }
  .mobile-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.7rem 1rem;
    color: #fff;
    background: #1f9d61;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(20, 92, 57, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .mobile-whatsapp svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.65rem, 11.5vw, 3.75rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-copy { padding: 3.25rem 1rem 2.5rem; }
  .section { padding: 4.5rem var(--gutter); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-visual-shell {
    min-height: 28rem;
    padding: 1rem;
  }
  .hero-visual-main { inset: 1rem; }
  .floating-card-left { display: none; }
  .floating-card-right {
    top: auto;
    right: 1.6rem;
    bottom: 1.6rem;
    left: 1.6rem;
    max-width: none;
    padding: 1rem;
  }
  .moment-row { grid-template-columns: 5.8rem 1fr; gap: 0.65rem; }
  .moment-row + .moment-row { margin-top: 0.55rem; padding-top: 0.55rem; }
  .moment-row p { font-size: 0.78rem; line-height: 1.5; }
  .service-card { min-height: auto; }
  .service-card-top { margin-bottom: 2rem; }
  .footer-brand img { width: min(20rem, 100%); }
  .mobile-whatsapp span { display: none; }
  .mobile-whatsapp { width: 3.25rem; height: 3.25rem; justify-content: center; padding: 0; }
}
