*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0F1D32;
  --navy-light: #1A2D47;
  --gold: #C8A45C;
  --gold-light: #D4B76E;
  --gold-pale: #F5EFC8;
  --cream: #FAFAF8;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

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

/* ── Vertical Line Accent ── */
.line-accent {
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%);
  z-index: 1000;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 20px rgba(15, 29, 50, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-wordmark {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 6px;
}

.amp {
  color: var(--gold);
  font-style: italic;
}

/* ── Navigation ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
  position: relative;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--navy);
  left: 0;
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(90deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  opacity: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-left: 8px;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  padding-right: 20px;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tagline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 29, 50, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.hero-detail a {
  color: var(--gold);
  transition: color 0.25s;
}

.hero-detail a:hover {
  color: var(--gold-light);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Hero Image ── */
.hero-image-wrap {
  position: relative;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-image-wrap:hover .hero-image img {
  transform: scale(1.03);
}

.hero-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

/* ── Divider ── */
.divider {
  padding: 0;
  overflow: hidden;
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-200), transparent);
}

/* ── Section Labels ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ── Products ── */
.products {
  padding: 120px 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  font-weight: 300;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.about-image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 7/8;
  background: var(--gray-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 400;
}

.about-feature .icon {
  color: var(--gold);
  width: 16px;
  height: 16px;
}

/* ── Hours ── */
.hours {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

.hours .section-label {
  color: var(--gold);
}

.hours .section-title {
  color: var(--white);
  margin-bottom: 48px;
}

.hours-inner {
  max-width: 640px;
}

.hours-grid {
  border-top: 1px solid rgba(200, 164, 92, 0.2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
}

.hours-row span:first-child {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.hours-row span:last-child {
  font-weight: 400;
  color: var(--white);
}

.hours-closed span:last-child {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hours-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* ── Location ── */
.location {
  padding: 120px 0;
  background: var(--white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.location-detail {
  display: flex;
  gap: 20px;
}

.location-detail .icon {
  margin-top: 2px;
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.location-detail p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-weight: 300;
}

.location-detail a {
  color: var(--gold);
  transition: color 0.25s;
}

.location-detail a:hover {
  color: var(--navy);
}

.location-map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  box-shadow: 0 20px 60px rgba(15, 29, 50, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-brand .logo-wordmark {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}

.footer-contact strong,
.footer-links strong {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-weight: 300;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    gap: 48px;
  }

  .location-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .line-accent { display: none; }

  .header-inner { height: 64px; }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(15, 29, 50, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 5;
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 14px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    border: 1px solid var(--gold);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 29, 50, 0.3);
    z-index: 4;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 20px;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
  }

  .hero-image {
    aspect-ratio: 16/10;
  }

  .hero-accent { display: none; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .products {
    padding: 80px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about {
    padding: 80px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 16/10;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hours {
    padding: 80px 0;
  }

  .location {
    padding: 80px 0;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    aspect-ratio: 16/9;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
