/* ============================================================
   HAVETS BORD — Klassisk Maritim Design
   ============================================================ */

/* ── FACEBOOK FØLG OS KNAP ── */
.fb-follow-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1877F2;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: background 0.2s, transform 0.2s;
}
.fb-follow-btn:hover {
  background: #1465d8;
  transform: translateY(-2px);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Cinzel:wght@700;900&display=swap');

:root {
  --navy:       #1B3A5C;
  --navy-light: #2A5580;
  --beige:      #F5EDD8;
  --beige-dark: #EAD9BC;
  --terra:      #C4622D;
  --terra-dark: #A04820;
  --text:       #2C2C2C;
  --text-light: #666666;
  --white:      #FAFAF5;
  --gold:       #E8892A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--beige);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── NAVIGATION ── */
.navbar {
  background: var(--navy);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--terra));
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-links a {
  color: rgba(245,237,216,0.8);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 26px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--terra);
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0; right: 0;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy) 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '🐟';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.page-header::after {
  content: '🐟';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}
.page-header-tag {
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(245,237,216,0.65);
  font-size: 16px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.ph-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.ph-line { width: 60px; height: 1px; background: var(--terra); }
.ph-anchor { color: var(--terra); font-size: 18px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: white;
  padding: 17px 44px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--terra-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 44px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: default;
  font-style: italic;
}

.btn-terra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: white;
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-terra:hover { background: var(--terra-dark); }

/* ── SECTION COMMON ── */
.section { padding: 80px 60px; }
.section-beige { background: var(--beige); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--navy);
  font-weight: 900;
}
.section-title.light { color: var(--white); }
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}
.div-line { width: 80px; height: 1px; background: var(--terra); }
.div-icon { color: var(--terra); font-size: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(245,237,216,0.7);
  padding: 60px;
  border-top: 3px solid var(--terra);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,237,216,0.6);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196,98,45,0.4);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(245,237,216,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terra); }
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,237,216,0.65);
}
.footer-col .hours-table { width: 100%; }
.footer-col .hours-table td { font-size: 13px; padding: 3px 0; }
.footer-col .hours-table td:last-child { text-align: right; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(245,237,216,0.35);
}
.footer-bottom a { color: var(--terra); text-decoration: none; }

/* ── MENU TABLES ── */
.menu-table {
  width: 100%;
  border-collapse: collapse;
}
.menu-table thead tr {
  background: var(--navy);
}
.menu-table thead th {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  padding: 14px 20px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 1px;
}
.menu-table thead th:last-child { text-align: right; }
.menu-table tbody tr {
  border-bottom: 1px solid var(--beige-dark);
  transition: background 0.15s;
}
.menu-table tbody tr:hover { background: rgba(196,98,45,0.04); }
.menu-table tbody td {
  padding: 16px 20px;
  vertical-align: top;
}
.menu-table tbody td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--terra);
  font-size: 17px;
  font-family: 'Playfair Display', serif;
}
.menu-table .dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.menu-table .dish-desc {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
}

/* ── MENU TABS ── */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--beige-dark);
}
.tab-btn {
  background: none;
  border: none;
  padding: 18px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--navy); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── MENU CATEGORY HEADER ── */
.menu-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  margin-top: 48px;
}
.menu-cat:first-child { margin-top: 0; }
.menu-cat-line { flex: 1; height: 1px; background: var(--beige-dark); }
.menu-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-cat-title span { color: var(--terra); font-size: 14px; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 1px; }

/* ── BØRNEMENU CARDS ── */
.children-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.child-card {
  background: white;
  border-top: 4px solid var(--terra);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(27,58,92,0.08);
}
.child-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.child-card p {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
}
.child-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--terra);
  font-weight: 700;
}

/* ── THAI GRID ── */
.thai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.thai-card {
  background: white;
  border-left: 4px solid var(--terra);
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(27,58,92,0.07);
  position: relative;
}
.thai-num {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 28px;
  color: rgba(27,58,92,0.06);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1;
}
.thai-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}
.thai-card p {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.thai-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--terra);
  font-weight: 700;
}

/* ── OM OS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-top: 5px solid var(--terra);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 4px solid var(--beige);
  text-align: center;
}
.badge-year { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); font-weight: 700; line-height: 1; }
.badge-text { font-size: 9px; color: rgba(245,237,216,0.7); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  background: var(--navy);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--terra);
}
.value-icon { font-size: 38px; margin-bottom: 16px; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}
.value-card p { color: rgba(245,237,216,0.55); font-size: 14px; line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.contact-value a { color: var(--navy); text-decoration: none; }
.contact-value a:hover { color: var(--terra); }

.hours-box {
  background: var(--navy);
  padding: 30px;
  margin-top: 32px;
}
.hours-box h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,98,45,0.4);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .hl { color: rgba(245,237,216,0.65); }
.hours-row .hr { color: var(--gold); font-weight: 700; }

/* ── CONTACT SPLIT LAYOUT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.contact-split-left {
  background: var(--navy);
  padding: 70px 60px;
}
.contact-split-right {
  background: var(--beige);
  padding: 70px 60px;
}
.cs-tag {
  font-size: 11px;
  color: rgba(245,237,216,0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cs-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cs-divider {
  width: 50px;
  height: 3px;
  background: var(--terra);
  margin-bottom: 40px;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.cs-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cs-label {
  font-size: 10px;
  color: var(--terra);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cs-val {
  font-size: 16px;
  color: rgba(245,237,216,0.85);
  font-weight: 400;
  line-height: 1.5;
}
.cs-val a {
  color: rgba(245,237,216,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.cs-val a:hover { color: var(--terra); }
.cs-book-btn {
  display: inline-block;
  background: var(--terra) !important;
  color: white !important;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none !important;
  margin-top: 4px;
  transition: background 0.2s;
}
.cs-book-btn:hover { background: var(--terra-dark) !important; }

/* Hours cards */
.hours-card-new {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 10px rgba(27,58,92,0.07);
  transition: transform 0.15s;
}
.hours-card-new:hover { transform: translateX(4px); }
.hours-card-new.highlight { border-left-color: var(--terra); }
.hcn-icon { font-size: 24px; flex-shrink: 0; }
.hcn-info { flex: 1; }
.hcn-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
}
.hcn-days {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.hcn-time {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--terra);
  font-weight: 700;
  white-space: nowrap;
}

/* ── CONTACT INFO GRID ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.contact-info-grid .contact-item {
  background: white;
  border-top: 4px solid var(--terra);
  padding: 28px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(27,58,92,0.08);
}
.contact-info-grid .contact-icon {
  font-size: 28px;
  background: var(--navy);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

/* ── CONTACT FORM ── */
.contact-form-box {
  background: white;
  padding: 44px;
  border-top: 4px solid var(--terra);
  box-shadow: 0 4px 24px rgba(27,58,92,0.1);
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--beige-dark);
  background: var(--beige);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── MAP PLACEHOLDER ── */
.map-section { height: 360px; background: #d0d8e0; position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ── HERO (index only) ── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy) 100%);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-deco-fish {
  position: absolute;
  font-size: 220px;
  opacity: 0.04;
  color: white;
}
.hero-deco-fish.left  { left: -30px; top: 50%; transform: translateY(-50%) scaleX(-1); }
.hero-deco-fish.right { right: -30px; top: 50%; transform: translateY(-50%); }
.hero-wave-top    { position: absolute; top: 0;    left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--terra), var(--gold), var(--terra)); }
.hero-orange-line {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--terra));
  z-index: 1;
}
.hero-bg-logo {
  width: 620px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  display: block;
  padding: 40px 0 0 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 60px 48px;
}
.hero-tag {
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--terra); }
.hero-tag::after  { content: ''; display: block; width: 30px; height: 1px; background: var(--terra); }
.hero h1 {
  font-family: 'Cinzel', serif;
  color: white;
  font-size: 80px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 6px;
  word-spacing: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 80px;
  letter-spacing: 6px;
  color: white;
  display: inline;
}
.hero-sub {
  color: rgba(245,237,216,0.6);
  font-size: 17px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.hero-img {
  width: 420px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  width: 360px; height: 360px;
  border: 2px solid rgba(245,237,216,0.2);
  position: relative;
  overflow: hidden;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--terra);
  color: white;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 3px solid var(--beige);
}
.hero-badge-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; line-height: 1; }
.hero-badge-kr    { font-size: 11px; letter-spacing: 1px; font-weight: 300; }

/* ── FEATURES STRIP ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature {
  background: var(--navy);
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.feature:last-child { border-right: none; }
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--terra);
}
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}
.feature p { color: rgba(245,237,216,0.5); font-size: 14px; line-height: 1.7; }

/* ── OPENING HOURS (index) ── */
.hours-section {
  background: var(--white);
  padding: 70px 60px;
}
.hours-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.hour-card {
  background: var(--beige);
  padding: 32px 24px;
  border-top: 4px solid var(--terra);
  text-align: center;
}
.hour-card-icon { font-size: 30px; margin-bottom: 12px; }
.hour-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.hour-card .time {
  font-size: 22px;
  font-weight: 700;
  color: var(--terra);
  font-family: 'Playfair Display', serif;
}
.hour-card .days {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── MENU PREVIEW (index) ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.preview-card {
  background: white;
  border-top: 4px solid var(--terra);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,58,92,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27,58,92,0.15);
}
.preview-card-img {
  overflow: hidden;
}
.preview-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s;
}
.preview-card:hover .preview-card-img img { transform: scale(1.02); }
.preview-card-body { padding: 24px; text-align: center; }
.preview-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.preview-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.preview-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--terra);
  font-weight: 700;
}

/* ── PDF VIEWER ── */
.pdf-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.pdf-nav-btn {
  background: white;
  border: 2px solid var(--beige-dark);
  color: var(--text);
  padding: 11px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.pdf-nav-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.pdf-nav-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.pdf-viewer-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(27,58,92,0.2);
}
#pdf-frame {
  width: 100%;
  height: auto;
  border: none;
  display: block;
}
.pdf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}
.pdf-ctrl-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 13px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.pdf-ctrl-btn:hover { background: var(--navy-light); }
.pdf-ctrl-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pdf-counter {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-light);
  min-width: 60px;
  text-align: center;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--terra);
  padding: 60px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.cta-band .btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--terra);
  padding: 16px 44px;
  font-family: 'Lato', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s;
}
.cta-band .btn-white:hover { opacity: 0.9; }
