:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --charcoal: #334155;
  --gold: #D4AF37;
  --gold-light: #FCECB5;
  --gold-dark: #B5952F;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-light: #E2E8F0;
  --gray: #64748B;
  --muted: #64748B;
  --text-main: #334155;
  
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
  --radius: 4px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); font-weight: 600; margin: 0; }
:focus-visible { outline: 3px solid rgba(212, 175, 55, 0.55); outline-offset: 4px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.site-header.is-scrolled .header-inner {
  padding: 14px 24px;
}
.brand {
  text-decoration: none;
  display: grid;
  gap: 4px;
}
.brand strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.brand span {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a {
  text-decoration: none;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav a[aria-current="page"], .nav a:hover {
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 16px;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 40px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 50%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 450px);
  gap: 60px;
  align-items: center;
  padding: 80px 24px 100px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@keyframes float {
  0% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(1.2deg); }
  100% { transform: translateY(0px) rotate(2deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  color: var(--white);
  line-height: 1.15;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero p {
  color: var(--gray-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero .actions {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-card {
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.hero-card:hover {
  animation: none;
  transform: scale(1.03) translateY(-10px) rotate(0deg);
  box-shadow: var(--shadow-hover);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.hero-card figcaption {
  padding: 20px;
  color: var(--navy);
  font-size: 0.95rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

/* Actions & Buttons */
.actions { display: flex; gap: 16px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}
.button:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }
.button.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.button.secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }

/* General Sections */
.section { max-width: var(--max); margin: 0 auto; padding: 100px 24px; }
.section-head { margin-bottom: 60px; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-head p { color: var(--gray); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* Grids */
.grid-3 { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 40px; grid-template-columns: repeat(2, 1fr); }
.service-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.4);
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover::after { transform: scaleX(1); }
.card img { 
  width: 100%; 
  aspect-ratio: 16/9; 
  object-fit: cover; 
  border-bottom: 1px solid var(--line);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover img {
  transform: scale(1.05);
}
.card-body { padding: 32px; }
.card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.card p, .card li { color: var(--gray); font-size: 0.95rem; margin-bottom: 24px; }
.card a { color: var(--gold-dark); text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; }
.card a:hover { color: var(--navy); }

/* Band Section (CTA) */
.band {
  background: var(--navy-light);
  color: var(--white);
  position: relative;
  border-top: 4px solid var(--gold);
}
.band .section { padding-top: 80px; padding-bottom: 80px; text-align: center; }
.band h2 { color: var(--white); margin-bottom: 24px; }
.band p { color: var(--gray-light); font-size: 1.1rem; max-width: 800px; margin: 0 auto 40px; }
.band .actions { justify-content: center; }

/* Notice */
.notice {
  border-left: 4px solid var(--gold);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 40px;
}

/* Page Hero */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
.page-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--white); margin-bottom: 24px; }
.page-hero p { color: var(--gray-light); font-size: 1.15rem; font-weight: 300; }

/* Internal Pages Typography */
.list-columns { columns: 2; column-gap: 60px; color: var(--text-main); font-size: 1.05rem; }
.review { background: var(--white); border: 1px solid var(--line); padding: 32px; margin-bottom: 24px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); position: relative; }
.review::before { content: "“"; font-family: Georgia, serif; font-size: 4rem; color: var(--gold); position: absolute; top: -10px; left: 20px; opacity: 0.3; }
.review p { margin: 0 0 16px; font-style: italic; color: var(--charcoal); font-size: 1.05rem; }
.review strong { color: var(--navy); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Contact Form */
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form { background: var(--white); padding: 40px; box-shadow: var(--shadow); border-top: 4px solid var(--navy); }
.form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form input, .form textarea { width: 100%; border: 1px solid var(--gray-light); padding: 14px 16px; font-family: inherit; font-size: 1rem; color: var(--charcoal); background: var(--off-white); margin-bottom: 24px; transition: border-color 0.3s ease; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form textarea { min-height: 150px; resize: vertical; }
.form button { width: 100%; }

/* Footer */
.footer { background: var(--navy); color: var(--white); padding: 80px 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer strong { display: block; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; margin-bottom: 20px; }
.footer p { color: var(--gray-light); font-size: 0.95rem; margin-bottom: 16px; }
.footer a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
.footer a:hover { color: var(--gold); }
.footer small { display: block; color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }

/* Animation Reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 60px; }
  .hero-inner::before { display: none; }
  .eyebrow { margin: 0 auto 24px; }
  .hero p { margin: 0 auto 40px; }
  .actions { justify-content: center; }
  .hero-card { max-width: 450px; margin: 0 auto; }
}

@media (max-width: 880px) {
  .menu-button { display: inline-block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; background: var(--white); padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-light); width: 100%; text-align: center; }
  .nav a:last-child { border-bottom: none; }
  .nav a[aria-current="page"], .nav a:hover { border-bottom: 1px solid var(--gold); }
  
  .contact-panel, .grid-3, .grid-2, .service-grid, .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-head { text-align: center; }
  .list-columns { columns: 1; }
  
  .section { padding: 60px 24px; }
}


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

@media (max-width: 560px) {
  .header-inner { padding: 16px 18px; }
  .brand strong { font-size: 1rem; }
  .brand span { font-size: 0.68rem; }
  .hero-inner { padding: 48px 20px 68px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.15rem); }
  .actions, .button { width: 100%; }
  .card-body, .form { padding: 26px; }
  .footer { padding: 58px 20px; }
}
