/* ========================================
   THE COPPER TABLE — STYLES
   Mobile-first, responsive design
   ======================================== */

/* ---------- Custom Properties ---------- */
:root {
  --copper: #B87333;
  --copper-dark: #9A5F2A;
  --copper-light: #D4945A;
  --wood-darkest: #2C1810;
  --wood-dark: #3D2914;
  --wood-mid: #5C3D20;
  --cream: #F5F0EB;
  --ivory: #FDFAF6;
  --gold: #D4A843;
  --white: #FFFFFF;
  --black: #111111;
  --text: #3D2914;
  --text-light: #7A6550;
  --border: rgba(184, 115, 51, 0.2);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Lora', Georgia, serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.25rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--copper-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---------- Section Headers ---------- */
.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--copper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-tag em {
  font-style: italic;
  white-space: nowrap;
}

.line-left,
.line-right {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--copper);
  vertical-align: middle;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--wood-darkest);
  text-align: center;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: var(--fs-md);
}

.section-header {
  margin-bottom: var(--space-lg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
  border: 2px solid var(--copper);
}

.btn--primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--wood-darkest);
}

.btn--full {
  width: 100%;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--wood-darkest);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  z-index: 1001;
}

.header__logo:hover {
  color: var(--copper-light);
}

.header__logo-icon {
  color: var(--copper);
  font-size: 1.2rem;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: var(--space-md);
}

.header__nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.25rem 0;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--white);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta {
  display: none;
  padding: 10px 24px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.header__cta:hover {
  background: var(--copper-dark);
  color: var(--white);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--wood-darkest);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.header__nav.open .header__nav-list {
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav.open .header__nav-link {
  font-size: var(--fs-xl);
  font-family: var(--ff-heading);
}

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

.hero__bg {
  position: absolute;
  inset: -20% 0;
  background:
    url('../IMAGES/pexels-pixabay-262047.jpg') center/cover no-repeat;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.55);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 120px var(--space-md) 80px;
  max-width: 750px;
}

.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--copper-light);
  font-size: var(--fs-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero__tag .line-left,
.hero__tag .line-right {
  background: var(--copper-light);
  width: 50px;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
}

.hero__hours i {
  margin-right: 0.3rem;
  color: var(--copper-light);
}

.hero__hours-sep {
  color: var(--copper);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--copper);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* ========================================
   AMBIANCE BAR
   ======================================== */
.ambiance {
  background: var(--wood-darkest);
  padding: var(--space-lg) 0;
}

.ambiance__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.ambiance__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--cream);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
}

.ambiance__item i {
  color: var(--copper);
  font-size: 1.1rem;
}

/* ========================================
   MENU
   ======================================== */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.menu__tab {
  padding: 10px 24px;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-light);
  border: 2px solid var(--border);
  border-radius: 30px;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.menu__tab:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.menu__tab.active {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.menu__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.menu__filter {
  padding: 6px 16px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.menu__filter:hover {
  border-color: var(--copper-light);
  color: var(--copper);
}

.menu__filter.active {
  background: var(--copper-light);
  border-color: var(--copper-light);
  color: var(--white);
}

/* Menu Panels */
.menu__panel {
  display: none;
}

.menu__panel.active {
  display: block;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.menu__item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(184, 115, 51, 0.1);
  transition: opacity var(--transition);
}

.menu__item.hidden {
  display: none;
}

.menu__item-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.menu__item-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--wood-darkest);
  white-space: nowrap;
}

.menu__item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  min-width: 20px;
  margin-bottom: 4px;
}

.menu__item-price {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--copper);
  white-space: nowrap;
}

.menu__item-desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.menu__item-tags {
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.tag--vegetarian {
  background: rgba(76, 175, 80, 0.12);
  color: #2E7D32;
}

.tag--vegan {
  background: rgba(56, 142, 60, 0.12);
  color: #1B5E20;
}

.tag--gf {
  background: rgba(255, 152, 0, 0.12);
  color: #E65100;
}

/* ========================================
   OUR STORY
   ======================================== */
.story {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story__images {
  position: relative;
  min-height: 350px;
}

.story__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.story__img--1 {
  width: 80%;
  height: 300px;
  background-image: url('../IMAGES/pexels-pixabay-262047.jpg');
  box-shadow: var(--shadow-lg);
}

.story__img--2 {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 60%;
  height: 200px;
  background-image: url('../IMAGES/pexels-reneterp-2544829.jpg');
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.story__text {
  padding: 0;
}

.story__text .section-tag {
  justify-content: flex-start;
}

.story__text .section-title {
  text-align: left;
}

.story__text p {
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.story__signature {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.story__signature-name {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--copper);
}

.story__signature-title {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ========================================
   PRIVATE EVENTS
   ======================================== */
.events {
  position: relative;
  padding: var(--space-2xl) 0;
  background:
    linear-gradient(135deg, #2C1810 0%, #3D2914 50%, #2C1810 100%);
  color: var(--cream);
}

.events__overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L20 10L10 20L0 10Z' fill='rgba(184,115,51,0.05)'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.events .section-title {
  color: var(--cream);
}

.events .section-desc {
  color: rgba(245, 240, 235, 0.7);
}

.events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

.events__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.events__room h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--copper-light);
  margin-bottom: 0.5rem;
}

.events__room h3 i {
  margin-right: 0.5rem;
  font-size: 0.9em;
}

.events__room p {
  color: rgba(245, 240, 235, 0.7);
  font-size: var(--fs-sm);
}

.events__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.events__img {
  border-radius: var(--radius-lg);
  min-height: 180px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.events__img--1 {
  grid-column: 1 / -1;
  min-height: 200px;
  background-image: url('../IMAGES/pexels-athena-2961968.jpg');
}

.events__img--2 {
  background-image: url('../IMAGES/pexels-breakingpic-3044.jpg');
}

.events__img--3 {
  background-image: url('../IMAGES/pexels-reneterp-1327393.jpg');
}

/* ========================================
   RESERVATIONS
   ======================================== */
.reservations {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.reservations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.reservations__form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  margin-bottom: var(--space-md);
}

.form__group label {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--wood-darkest);
  margin-bottom: 0.4rem;
}

.required {
  color: #c0392b;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}

.form__group input.error,
.form__group select.error,
.form__group textarea.error {
  border-color: #c0392b;
}

.form__error {
  font-size: var(--fs-xs);
  color: #c0392b;
  margin-top: 0.25rem;
  min-height: 1.2em;
}

.form__success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.form__success.show {
  display: flex;
}

.form__success i {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: var(--space-sm);
}

.form__success h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--wood-darkest);
  margin-bottom: var(--space-xs);
}

.form__success p {
  color: var(--text-light);
  max-width: 400px;
}

/* Sidebar */
.reservations__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.reservations__card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--copper);
}

.reservations__card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--wood-darkest);
  margin-bottom: 0.5rem;
}

.reservations__card h3 i {
  color: var(--copper);
  margin-right: 0.5rem;
}

.reservations__card p,
.reservations__card li {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.reservations__card ul {
  padding-left: 1rem;
}

.reservations__card li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.4rem;
}

.reservations__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}

.reservations__phone {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--copper);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ========================================
   INSTAGRAM
   ======================================== */
.instagram {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.instagram__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}

.instagram__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.instagram__img--1 { background-image: url('../IMAGES/pexels-pixabay-262047.jpg'); }
.instagram__img--2 { background-image: url('../IMAGES/pexels-reneterp-1327393.jpg'); }
.instagram__img--3 { background-image: url('../IMAGES/pexels-breakingpic-3044.jpg'); }
.instagram__img--4 { background-image: url('../IMAGES/pexels-athena-2961968.jpg'); }
.instagram__img--5 { background-image: url('../IMAGES/pexels-reneterp-2544829.jpg'); }
.instagram__img--6 { background-image: url('../IMAGES/pexels-reneterp-1327393.jpg'); }

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(184, 115, 51, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__tile:hover .instagram__img {
  transform: scale(1.1);
}

.instagram__tile:hover .instagram__overlay {
  opacity: 1;
}

/* ========================================
   CONTACT / LOCATION
   ======================================== */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact__map-placeholder {
  width: 100%;
  min-height: 300px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(184, 115, 51, 0.06) 0px,
      rgba(184, 115, 51, 0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(184, 115, 51, 0.06) 0px,
      rgba(184, 115, 51, 0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    linear-gradient(135deg, var(--cream) 0%, #e8e0d8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: var(--fs-sm);
}

.contact__map-pin {
  font-size: 3rem;
  color: var(--copper);
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact__card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--wood-darkest);
  margin-bottom: 0.75rem;
}

.contact__card h3 i {
  color: var(--copper);
  margin-right: 0.5rem;
}

.contact__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__card ul li {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.contact__card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact__card p i {
  color: var(--copper);
  width: 20px;
  margin-right: 0.5rem;
}

.contact__card p a {
  color: var(--text-light);
}

.contact__card p a:hover {
  color: var(--copper);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--wood-darkest);
  color: rgba(245, 240, 235, 0.7);
  padding: var(--space-2xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer__logo:hover {
  color: var(--copper-light);
}

.footer__logo-icon {
  color: var(--copper);
}

.footer__col p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__col ul li {
  margin-bottom: 0.4rem;
}

.footer__col ul li a {
  color: rgba(245, 240, 235, 0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--copper-light);
}

.footer__col ul li i {
  color: var(--copper);
  margin-right: 0.5rem;
  width: 16px;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  max-width: 200px;
}

.footer__bottom {
  border-top: 1px solid rgba(184, 115, 51, 0.15);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  margin: 0;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--copper-dark);
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE — 600px
   ======================================== */
@media (min-width: 600px) {
  .hero__title {
    font-size: var(--fs-3xl);
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

  .form__row {
    grid-template-columns: 1fr 1fr;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ambiance__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE — 900px
   ======================================== */
@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-block;
  }

  .header__hamburger {
    display: none;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .story__grid {
    grid-template-columns: 1fr 1fr;
  }

  .events__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .reservations__grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE — 1100px
   ======================================== */
@media (min-width: 1100px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero__title {
    font-size: 4.25rem;
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

  .story__images {
    min-height: 450px;
  }

  .story__img--1 {
    height: 400px;
  }

  .story__img--2 {
    height: 260px;
  }
}
