:root {
  --font-sans: "Inter";
  --font-serif: "Playfair Display";
  --navy-950: #030a11;
  --navy-900: #06111b;
  --navy-850: #091827;
  --navy-800: #0d2031;
  --gold-500: #c8943f;
  --gold-400: #d5a854;
  --gold-300: #e3c17c;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --ink: #111820;
  --muted: #5e6670;
  --line: rgba(17, 24, 32, 0.11);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 55px rgba(4, 13, 21, 0.09);
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans), Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans), Arial, sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--gold-500);
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-900);
  border: 1px solid var(--gold-500);
}

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

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

.section {
  padding: 94px 0;
}

.section-light {
  background:
    radial-gradient(circle at 9% 15%, rgba(200, 148, 63, 0.05), transparent 23%),
    var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  color: #fff;
  background: var(--navy-950);
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  width: min(680px, 100%);
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.custody-copy h2 {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p {
  max-width: 610px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.68);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #b77e2b, #daa94f);
  box-shadow: 0 12px 30px rgba(189, 132, 43, 0.22);
}

.btn-gold:hover {
  color: #fff;
  background: linear-gradient(135deg, #c28a34, #e5bb67);
  box-shadow: 0 16px 34px rgba(189, 132, 43, 0.32);
}

.btn-outline-gold {
  color: #fff;
  border-color: rgba(213, 168, 84, 0.65);
  background: rgba(3, 10, 17, 0.22);
}

.btn-outline-gold:hover {
  color: #fff;
  border-color: var(--gold-400);
  background: rgba(213, 168, 84, 0.1);
}

.btn-navy {
  color: #fff;
  background: var(--navy-900);
}

.btn-navy:hover {
  color: #fff;
  background: var(--navy-800);
}

.line-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid var(--white-line);
  background: rgba(3, 10, 17, 0.74);
  backdrop-filter: blur(12px);
  transition:
    height 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(3, 10, 17, 0.96);
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.brand-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.site-header.is-scrolled .brand-logo {
  width: 56px;
  height: 56px;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 27px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-urgent {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(228, 191, 119, 0.42);
  border-radius: 3px;
  background: linear-gradient(135deg, #ad792b, #d4a34d);
}

.header-urgent:hover {
  color: #fff;
}

.header-urgent > span:first-child {
  font-size: 1.2rem;
}

.header-urgent > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-urgent small {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-urgent strong {
  margin-top: 3px;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: #fff;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: #16a84a;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

.floating-whatsapp > span:first-child {
  font-size: 1.45rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
