/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        hsl(40, 72%, 58%);
  --gold-light:  hsl(43, 80%, 70%);
  --gold-dark:   hsl(35, 65%, 42%);
  --cream:       hsl(40, 30%, 96%);
  --cream-mid:   hsl(38, 25%, 91%);
  --dark:        hsl(220, 18%, 8%);
  --dark-mid:    hsl(220, 15%, 13%);
  --dark-card:   hsl(220, 14%, 16%);
  --text-light:  hsl(40, 20%, 88%);
  --text-muted:  hsl(220, 10%, 58%);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 4px 24px hsla(40, 72%, 58%, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(40, 72%, 58%, 0.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid hsla(40, 30%, 88%, 0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: hsla(40, 30%, 96%, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid hsla(40, 30%, 88%, 0.5);
}
.btn-outline-light:hover {
  background: hsla(40, 30%, 96%, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 14px hsla(40, 72%, 58%, 0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsla(40, 72%, 58%, 0.5);
}

.btn-card {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid hsla(40, 72%, 58%, 0.4);
  padding: 11px 24px;
  font-size: 0.85rem;
  margin-top: auto;
}
.btn-card:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px hsla(40, 72%, 58%, 0.4);
}

/* ── NAV ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav-header.scrolled {
  background: hsla(220, 18%, 8%, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 hsla(40, 72%, 58%, 0.15);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo-text { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { opacity: 1; color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(220, 18%, 5%, 0.55) 0%,
    hsla(220, 18%, 5%, 0.4) 40%,
    hsla(220, 18%, 5%, 0.75) 80%,
    hsla(220, 18%, 5%, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: hsla(40, 20%, 88%, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease both;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid hsla(40, 72%, 58%, 0.3);
  background: hsla(40, 72%, 58%, 0.08);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}
.badge span { font-size: 0.6rem; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid hsla(40, 72%, 58%, 0.4);
  border-radius: 15px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

@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;
  }

  .hero-img {
    animation: none;
    transform: none;
  }

  .ribbon-inner {
    animation: none;
  }
}

/* ── RIBBON ── */
.ribbon {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.ribbon-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ribbonScroll 22s linear infinite;
  width: max-content;
}
.ribbon-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.ribbon-inner .sep { opacity: 0.5; }

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

/* ── SECTION SHARED ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 110px 0;
  background: var(--dark-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsla(40, 30%, 60%, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px hsla(220, 18%, 3%, 0.5);
  border-color: hsla(40, 72%, 58%, 0.25);
}

.service-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img { transform: scale(1.06); }

.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(220, 18%, 8%, 0.7) 0%, transparent 60%);
}

.service-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsla(40, 72%, 58%, 0.08);
  border: 1px solid hsla(40, 72%, 58%, 0.2);
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon {
  background: hsla(40, 72%, 58%, 0.15);
  box-shadow: 0 0 16px hsla(40, 72%, 58%, 0.2);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}
.service-benefits li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.service-benefits li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── ABOUT ── */
.about {
  padding: 110px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img {
  width: 100%; height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-visual:hover .about-img { transform: scale(1.03); }

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 40px hsla(40, 72%, 30%, 0.4);
}
.about-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.about-badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsla(220, 18%, 10%, 0.8);
  margin-top: 4px;
}

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-stats {
  display: flex;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid hsla(40, 72%, 58%, 0.15);
  border-bottom: 1px solid hsla(40, 72%, 58%, 0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, hsl(35, 60%, 20%) 0%, hsl(220, 18%, 10%) 100%);
  border-top: 1px solid hsla(40, 72%, 58%, 0.2);
  border-bottom: 1px solid hsla(40, 72%, 58%, 0.2);
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  padding: 110px 0;
  background: var(--dark-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.contact-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid hsla(40, 30%, 60%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover {
  border-color: hsla(40, 72%, 58%, 0.3);
  transform: translateY(-3px);
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsla(40, 72%, 58%, 0.08);
  border: 1px solid hsla(40, 72%, 58%, 0.2);
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-card:hover .contact-icon {
  background: hsla(40, 72%, 58%, 0.16);
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}
.contact-link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
  margin-top: 4px;
}
.contact-link:hover { color: var(--gold-light); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsla(40, 30%, 60%, 0.12);
  box-shadow: 0 20px 60px hsla(220, 18%, 3%, 0.5);
}
.map-container iframe { display: block; filter: grayscale(20%) brightness(0.9); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid hsla(40, 72%, 58%, 0.12);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-brand .logo-icon { color: var(--gold); font-size: 1.1rem; }
.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: hsla(220, 10%, 40%, 1);
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 48px;
  }
}

/* Small tablet / large phone landscape */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-img {
    height: 380px;
  }
  .about-badge-float {
    bottom: 16px;
    right: 16px;
  }
  .services { padding: 80px 0; }
  .about   { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .cta-banner { padding: 60px 0; }
}

/* Mobile */
@media (max-width: 720px) {
  /* ── Nav ── */
  .nav-header { padding: 16px 0; }
  .nav-header.scrolled { padding: 10px 0; }
  .nav-logo { font-size: 1.35rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: hsla(220, 18%, 6%, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 96px 24px 40px;
    z-index: 99;
  }
  .nav-links .nav-link { font-size: 1.2rem; }
  .nav-links .btn-nav {
    width: min(100%, 280px);
    justify-content: center;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; z-index: 100; }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-title br,
  .section-title br { display: none; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.7rem; padding: 5px 11px; }
  .scroll-indicator { display: none; }

  /* ── Ribbon ── */
  .ribbon { padding: 12px 0; }

  /* ── Sections ── */
  .services  { padding: 64px 0; }
  .about     { padding: 64px 0; }
  .contact   { padding: 64px 0; }
  .cta-banner { padding: 52px 0; }
  .section-header { margin-bottom: 40px; }

  /* ── Services grid → single column ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-img-wrap { height: 200px; }
  .service-body { padding: 22px 20px; }

  /* ── About ── */
  .about-img { height: 280px; }
  .about-badge-float {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    width: fit-content;
  }
  .about-badge-num { font-size: 2rem; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
  }
  .stat { align-items: center; }

  /* ── CTA ── */
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .contact-card { padding: 22px 18px; }
  .map-container iframe { height: 300px; }

  /* ── Footer ── */
  .footer-links { gap: 18px; }
}

/* Small phones */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-num { font-size: 1.7rem; }
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle,
  .about-text,
  .section-sub,
  .cta-sub,
  .contact-value { font-size: 0.92rem; }
  .service-body,
  .contact-card { padding-left: 16px; padding-right: 16px; }
  .btn,
  .hero-actions .btn,
  .cta-actions .btn { max-width: 100%; }
}

