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

:root {
  --ink:      #1a1612;
  --paper:    #f7f4ef;
  --cream:    #ede9e2;
  --gold:     #b8976a;
  --gold-lt:  #d4b896;
  --muted:    #7a7167;
  --white:    #ffffff;
  --card-bg:  #ffffff;
  --shadow:   0 8px 40px rgba(26,22,18,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(247,244,239,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,151,106,0.18);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 10rem 4rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(184,151,106,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(184,151,106,0.07) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
  animation: fadeUp 0.9s ease both;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.8rem;
  max-width: 400px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO DECO ===== */
.hero-deco {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  pointer-events: none;
}
.deco-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,151,106,0.25);
}
.c1 { width: 420px; height: 420px; top: 50px; right: 50px; animation: spin 40s linear infinite; }
.c2 { width: 260px; height: 260px; top: 130px; right: 130px; animation: spin 25s linear infinite reverse; border-style: dashed; }
.deco-line {
  position: absolute; width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  right: 220px; top: 160px;
  animation: fadeUp 2s ease 0.5s both;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 4rem;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px; margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  animation: fadeUp 0.7s ease both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 2;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold-lt);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* ===== PAGE HERO (info page) ===== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
}
.page-hero .hero-bg {
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(184,151,106,0.12) 0%, transparent 70%);
}
.page-hero-content {
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 1rem;
}

/* ===== INFO SECTION ===== */
.info-section {
  padding: 5rem 4rem 6rem;
  max-width: 1100px; margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border: 1px solid rgba(184,151,106,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fadeUp 0.7s ease both;
}
.info-card:nth-child(2) { animation-delay: 0.15s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.info-card.highlight {
  background: var(--ink);
  border-color: transparent;
}
.info-card.highlight h3,
.info-card.highlight p { color: var(--paper); }
.info-card.highlight .info-icon svg { stroke: var(--gold); }

.info-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
}
.info-icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.info-card p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

/* ===== WORKING HOURS ===== */
.working-hours {
  background: var(--cream);
  padding: 3rem;
  border-left: 3px solid var(--gold);
  animation: fadeUp 0.7s ease 0.4s both;
}
.working-hours h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hours-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--muted);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(184,151,106,0.15);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-time { font-weight: 500; color: var(--ink); }
.closed { color: var(--gold) !important; font-style: italic; }

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(184,151,106,0.2);
  font-size: 0.82rem; color: var(--muted);
}
.footer a {
  text-decoration: none; color: var(--gold);
  transition: color 0.2s; letter-spacing: 0.06em;
}
.footer a:hover { color: var(--ink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 2rem; }
  .hero, .page-hero { padding: 8rem 2rem 4rem; }
  .features { padding: 4rem 2rem; }
  .features-grid, .info-grid { grid-template-columns: 1fr; gap: 2px; }
  .info-section { padding: 3rem 2rem 4rem; }
  .hero-deco { display: none; }
  .footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.75rem; text-align: center; }
}
