h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

p {
  font-family: 'Cormorant Garamond', serif;
}

/* ─── hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
/* content on top */
.hero-inner,
.scroll-cue {
  position: relative;
  z-index: 2;
}

.hero-inner {
  text-align: center;
  color: white;
  max-width: 800px;
  transform: translate(-10px, -100px);
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.ornament span {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a35c;
  opacity: 1;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-weight: 200;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(201,163,92,0.4);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem); 
  color: var(--gold-lt);
  margin: 26px auto 45px;
  max-width: 600px;
}

.logo {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  bottom: 150px; 
  left: 50%;
  transform: translateX(-40%);
}

.scroll-cue span {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.scroll-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

/* ─── story section ──────────────────────────────────────────────── */
.story-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
}

.slide-container {
  position: relative;
  width: 700px;
  height: 500px;
  overflow: hidden;
  border: 3px solid #c9a35c;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  transform: translateX(-90px);
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}


.story-text {
  max-width: 400px;
}

.story-label {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-130px);
  gap: 12px;
}

/*before & after line*/ 
.story-label::before,
.story-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--wine);
  opacity: 0.4;
}

.story-title {
  font-weight: 100;
  font-size: clamp(1.2rem, 5vw, 3rem);
  text-align: center;
  color: var(--wine);
  line-height: 1.1;
  margin-top: -220px;
  transform: translateX(-50px);
}

.story-title-em {
  font-weight: 100;
  font-size: clamp(1.2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--rustic);
  margin-top: -30px;
  transform: translateX(70px);
}

.story-paragraph {
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--wine);
  opacity: 0.85;
}
.story-time {
  padding: auto;
}
.story-time p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color:  #4A2030;
  letter-spacing: 0.04em;
}

.story-time p strong {
  color: var(--rustic);
  font-style: normal;
  font-weight: 600;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* nice hover effect */
.arrow:hover {
  background: rgba(0,0,0,0.8);
}
/* ─── MENU ──────────────────────────────────────────────────────── */
.menu-teaser {
  background: var(--dark);
}
 
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  margin-bottom: 48px;
}
 
.eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
 }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.12;
  color: var(--cream);
  margin-top: 10px;
}
 
.section-title em { font-style: italic; }
 
.section-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s;
}

.section-link:hover { color: var(--cream); }
 
.menu-items {
  display: flex;
  gap: 60px;
  justify-content: space-around;
}

.menu-items section {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-items section:nth-child(2) {
  flex: 0 0 400px;
}

.menu-items img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
}

.menu-items section:nth-child(2) img {
  width: 350px;
  height: 350px;
}

.item-info p, .item-info span {
  font-family: 'Cormorant Garamond', serif;
  color:var(--gold-lt);
  font-size: 18px;
}
.item-info h3 {
  font-size: 20px;
  color:var(--cream)
}

.menu-items img:hover {
  transform: scale(1.1); 
}

.tag {
  position: relative;
}
.size, .badge, .vegan {
  position: absolute;
  top: 10px;
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 20px;
  color: white;
}

/* left label */
.size {
  left: 10px;
  background: var(--rustic);
}

/* right label */
.badge {
  right: 10px;
  background: #eeb853;  
  color: black;
  font-weight: bold;
}
.vegan{
  right: 10px;
  background: #14753e; 
  color: white;
  font-weight: bold;
}
 
 /* ─── QUOTE ─── */
.quote-section {
  background: var(--cream);
  text-align: center;
  padding: 40px 40px;
}
.quote-mark {
  font-size: 70px;
  line-height: 0.3;
  color: var(--charcoal);
  opacity: 0.35;
  display: block;
  margin-bottom: 30px;
 }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
  max-width: 660px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.quote-author {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
}
.quote-author:hover {
    color: var(--rustic);
}

/* ─── reservation ──────────────────────────────────────────────────────── */
.reservation {
  background: var(--gold-lt);
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}

.join {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;

}
.res-title, .scroll-title {
  font-size: 42px;
  line-height: 1.12;
  color: var(--wine);
  margin-bottom: 22px;
  margin-top: 12px;
 }

.res-title em { font-style: italic; }

.res-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.72;
  margin-bottom: 36px;
 }

.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 34px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
 }

.btn-dark:hover { background: var(--rustic) }

.res-info-item {
  border-left: 2px solid var(--dark);
  padding-left: 20px;
}

.res-info-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rustic);
  margin-bottom: 7px;
}

.res-info-value, .res-info-value a  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--wine);
  line-height: 1.5;
}
.res-info-value a {
  text-decoration: none;
}

.res-info-value a:hover {
  color: var(--rustic);
}
/* ─── event rotation ──────────────────────────────────────────────────────── */
.scroll-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: var(--cream);
  padding: 40px 40px;
}

.scroll-content {
  display: inline-block;
  animation: scroll 30s linear infinite; 
}

.scroll-content img {
  height: 200px;
  margin: 0 10px;
  display: inline-block;
}

/* Pause on hover */
.scroll-container:hover .scroll-content {
  animation-play-state: paused;
}

.scroll-title {
  position: static;    
  margin-bottom: 20px;
  
}
.scroll-container p {
  text-align: center;
  margin-top: 20px;
  color: var(--wine);
  font-size: 29px;
}
.scroll-container strong {
  font-style: italic;
  font-weight: 400; 
}
.highlight-link, .highlight-G {
  color: var(--charcoal);        
  text-decoration: none;    
  font-style: normal;       
  font-weight: 600;
}


.highlight-link:hover , .highlight-G:hover {
  color: var(--rustic);
}

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