:root {
  --saffron: #E8943A;
  --saffron-light: #F2B060;
  --saffron-pale: #FEF3E7;
  --green: #2A6B4F;
  --green-light: #3D8A65;
  --green-pale: #EAF4EE;
  --red: #C8392B;
  --cream: #FFFDF8;
  --warm-white: #FAF7F2;
  --text: #1A1714;
  --text2: #3D3830;
  --muted: #8A7F72;
  --border: #EDE7DB;
  --white: #FFFFFF;
}

- { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

body {
background-color: #E8943A;
font-family: ‘DM Sans’, sans-serif;
background: var(–cream);
color: var(–text);
overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(–warm-white); }
::-webkit-scrollbar-thumb { background: var(–saffron); border-radius: 10px; }

/* ─── NAV ─── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 0 clamp(16px,5vw,64px);
height: 68px;
background: rgba(255,253,248,0.92);
backdrop-filter: blur(16px);
border-bottom: 1px solid transparent;
transition: border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled {
border-color: var(–border);
box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.logo {
display: flex; align-items: center; gap: 10px;
text-decoration: none;
}
.logo-medallion {
width: 40px; height: 40px;
background: var(–saffron);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 20px;
box-shadow: 0 4px 12px rgba(232,148,58,0.35);
flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
font-family: ‘Syne’, sans-serif;
font-size: 17px; font-weight: 800;
color: var(–text); letter-spacing: 0.5px;
}
.logo-sub {
font-size: 9px; letter-spacing: 2.5px;
text-transform: uppercase; color: var(–saffron);
font-weight: 500; margin-top: 2px;
}
.nav-links {
display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
font-size: 13px; font-weight: 500;
letter-spacing: 0.5px;
color: var(–text2); text-decoration: none;
transition: color 0.2s; position: relative;
}
.nav-links a::after {
content: ‘’; position: absolute; bottom: -3px; left: 0; right: 100%;
height: 1.5px; background: var(–saffron);
transition: right 0.25s ease;
}
.nav-links a:hover { color: var(–saffron); }
.nav-links a:hover::after { right: 0; }
.nav-reserve {
background: var(–saffron);
color: var(–white) !important;
padding: 10px 22px;
border-radius: 100px;
font-weight: 600 !important;
transition: background 0.2s, transform 0.2s !important;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover { background: var(–saffron-light) !important; transform: translateY(-1px); }
.hamburger {
display: none; flex-direction: column;
gap: 5px; cursor: pointer; padding: 6px;
}
.hamburger span {
display: block; width: 22px; height: 2px;
background: var(–text); border-radius: 2px;
transition: all 0.3s;
}
#mobileNav {
display: none; position: fixed;
top: 68px; left: 0; right: 0; z-index: 199;
background: var(–white);
border-bottom: 2px solid var(–saffron);
padding: 20px 24px;
flex-direction: column; gap: 4px;
}
#mobileNav.open { display: flex; }
#mobileNav a {
padding: 13px 16px; border-radius: 8px;
color: var(–text); text-decoration: none;
font-weight: 500; font-size: 15px;
transition: background 0.2s;
}
#mobileNav a:hover { background: var(–saffron-pale); color: var(–saffron); }

/* ─── HERO ─── */
#hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
padding-top: 68px;
overflow: hidden;
position: relative;
}
.hero-left {
padding: clamp(48px,8vw,100px) clamp(24px,6vw,80px);
position: relative; z-index: 2;
}
.hero-tag {
display: inline-flex; align-items: center; gap: 8px;
background: var(–saffron-pale);
border: 1px solid rgba(232,148,58,0.25);
color: var(–saffron);
font-size: 11px; font-weight: 600;
letter-spacing: 2px; text-transform: uppercase;
padding: 7px 16px; border-radius: 100px;
margin-bottom: 28px;
animation: fadeUp 0.7s ease both;
}
.hero-tag-dot {
width: 6px; height: 6px;
background: var(–saffron); border-radius: 50%;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
font-family: ‘Syne’, sans-serif;
font-size: clamp(44px,6.5vw,78px);
font-weight: 800; line-height: 1.0;
color: var(–text);
margin-bottom: 20px;
animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(–saffron); }
.hero-title .italic {
font-family: ‘Lora’, serif;
font-style: italic; font-weight: 400;
}
.hero-desc {
font-size: 16px; font-weight: 300;
line-height: 1.8; color: var(–muted);
max-width: 440px; margin-bottom: 40px;
animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
display: flex; gap: 14px; flex-wrap: wrap;
animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
background: var(–saffron); color: var(–white);
padding: 15px 32px; border-radius: 100px;
font-family: ‘DM Sans’, sans-serif;
font-size: 14px; font-weight: 600;
border: none; cursor: pointer;
text-decoration: none;
display: inline-flex; align-items: center; gap: 8px;
transition: all 0.25s;
box-shadow: 0 6px 20px rgba(232,148,58,0.3);
}
.btn-primary:hover {
background: var(–saffron-light);
transform: translateY(-2px);
box-shadow: 0 10px 28px rgba(232,148,58,0.4);
}
.btn-secondary {
background: transparent; color: var(–text);
padding: 15px 32px; border-radius: 100px;
font-size: 14px; font-weight: 500;
border: 1.5px solid var(–border);
cursor: pointer; text-decoration: none;
display: inline-flex; align-items: center; gap: 8px;
transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(–saffron); color: var(–saffron); }

.hero-badges {
display: flex; gap: 20px; margin-top: 48px; flex-wrap: wrap;
animation: fadeUp 0.7s 0.4s ease both;
}
.hero-badge {
display: flex; align-items: center; gap: 10px;
}
.hb-icon {
width: 42px; height: 42px;
background: var(–white); border-radius: 12px;
display: flex; align-items: center; justify-content: center;
font-size: 20px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hb-label { font-size: 11px; color: var(–muted); font-weight: 400; }
.hb-val { font-size: 14px; font-weight: 600; color: var(–text); }

.hero-right {
position: relative; height: 100vh;
overflow: hidden;
animation: fadeIn 1s 0.3s ease both;
}
.hero-right img {
width: 100%; height: 100%;
object-fit: cover;
}
.hero-right::before {
content: ‘’;
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(to right, var(–cream) 0%, transparent 30%);
}
.hero-float-card {
position: absolute; z-index: 3;
background: var(–white);
border-radius: 16px;
padding: 16px 20px;
box-shadow: 0 12px 40px rgba(0,0,0,0.13);
animation: float 4s ease-in-out infinite;
}
.hero-float-card.card1 { bottom: 120px; left: -20px; }
.hero-float-card.card2 { top: 120px; right: 32px; }
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.fc-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(–muted); margin-bottom: 4px; }
.fc-val { font-size: 22px; font-weight: 700; color: var(–text); }
.fc-sub { font-size: 11px; color: var(–saffron); font-weight: 500; }
.fc-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; }

/* ─── MARQUEE ─── */
.marquee-strip {
background: var(–saffron);
color: var(–white);
padding: 14px 0;
overflow: hidden;
white-space: nowrap;
}
.marquee-inner {
display: inline-flex; gap: 48px;
animation: marquee 22s linear infinite;
}
.marquee-inner span {
font-family: ‘Syne’, sans-serif;
font-size: 13px; font-weight: 600;
letter-spacing: 2px; text-transform: uppercase;
}
.marquee-dot {
color: rgba(255,255,255,0.5);
font-size: 6px; vertical-align: middle;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION HELPERS ─── */
.section-wrap { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
font-size: 11px; font-weight: 600;
letter-spacing: 2.5px; text-transform: uppercase;
color: var(–saffron); margin-bottom: 14px;
}
.section-eyebrow::before {
content: ‘’;
display: block; width: 24px; height: 2px;
background: var(–saffron); border-radius: 2px;
}
.section-heading {
font-family: ‘Syne’, sans-serif;
font-size: clamp(30px, 4vw, 50px);
font-weight: 800; line-height: 1.1;
color: var(–text); margin-bottom: 14px;
}
.section-heading .italic {
font-family: ‘Lora’, serif;
font-style: italic; font-weight: 400;
}
.section-lead {
font-size: 15px; font-weight: 300;
line-height: 1.8; color: var(–muted);
max-width: 500px;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; } to { opacity: 1; }
}

/* ─── STORY ─── */
#story {
padding: clamp(64px,10vw,120px) clamp(16px,5vw,64px);
background: var(–warm-white);
}
.story-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 72px; align-items: center;
}
.story-imgs {
position: relative;
}
.story-img-main {
width: 85%; aspect-ratio: 4/5;
object-fit: cover; border-radius: 20px;
display: block;
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.story-img-accent {
position: absolute; bottom: -28px; right: 0;
width: 52%; aspect-ratio: 1;
object-fit: cover; border-radius: 16px;
border: 5px solid var(–warm-white);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.story-chip {
position: absolute; top: 32px; right: 0;
background: var(–green);
color: var(–white);
padding: 16px 20px; border-radius: 14px;
text-align: center;
box-shadow: 0 8px 28px rgba(42,107,79,0.35);
}
.sc-num {
font-family: ‘Syne’, sans-serif;
font-size: 32px; font-weight: 800; line-height: 1;
}
.sc-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

.story-pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.pillar {
display: flex; gap: 16px; align-items: flex-start;
padding: 20px 22px; background: var(–white);
border-radius: 14px; border: 1px solid var(–border);
transition: box-shadow 0.25s, border-color 0.25s;
}
.pillar:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: var(–saffron-light); }
.pillar-icon {
font-size: 26px; width: 48px; height: 48px;
background: var(–saffron-pale); border-radius: 12px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.pillar-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.pillar-desc { font-size: 13px; color: var(–muted); line-height: 1.6; }

/* ─── MENU ─── */
#menu {
padding: clamp(64px,10vw,120px) clamp(16px,5vw,64px);
background: var(–cream);
}
.menu-header {
display: flex; justify-content: space-between;
align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
}
.menu-tabs {
display: flex; gap: 6px;
background: var(–warm-white);
border: 1px solid var(–border);
padding: 5px; border-radius: 100px;
}
.menu-tab {
padding: 9px 22px; border-radius: 100px;
border: none; background: transparent;
font-family: ‘DM Sans’, sans-serif;
font-size: 13px; font-weight: 500;
color: var(–muted); cursor: pointer;
transition: all 0.2s; white-space: nowrap;
}
.menu-tab.active {
background: var(–saffron); color: var(–white);
box-shadow: 0 4px 12px rgba(232,148,58,0.3);
}
.menu-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 24px;
}
.menu-card {
background: var(–white); border-radius: 20px;
overflow: hidden; border: 1px solid var(–border);
transition: all 0.3s; cursor: pointer;
animation: fadeUp 0.5s ease both;
}
.menu-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 48px rgba(0,0,0,0.1);
border-color: transparent;
}
.menu-img {
position: relative; height: 200px; overflow: hidden;
}
.menu-img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.5s;
display: block;
}
.menu-card:hover .menu-img img { transform: scale(1.07); }
.menu-label {
position: absolute; top: 14px; left: 14px;
background: var(–saffron); color: var(–white);
font-size: 10px; font-weight: 600;
letter-spacing: 1.5px; text-transform: uppercase;
padding: 4px 12px; border-radius: 100px;
}
.menu-label.spicy { background: var(–red); }
.menu-label.veg { background: var(–green); }
.menu-body { padding: 20px 22px 24px; }
.menu-name {
font-family: ‘Syne’, sans-serif;
font-size: 17px; font-weight: 700;
color: var(–text); margin-bottom: 6px;
}
.menu-desc {
font-size: 13px; color: var(–muted);
line-height: 1.6; margin-bottom: 16px;
}
.menu-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price {
font-family: ‘Syne’, sans-serif;
font-size: 20px; font-weight: 800; color: var(–saffron);
}
.menu-order {
background: var(–saffron-pale); color: var(–saffron);
border: none; border-radius: 100px;
padding: 7px 16px; font-size: 12px; font-weight: 600;
font-family: ‘DM Sans’, sans-serif;
cursor: pointer; transition: all 0.2s;
}
.menu-order:hover { background: var(–saffron); color: var(–white); }
.menu-tag {
display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
}
.tag {
background: var(–warm-white); color: var(–muted);
font-size: 10px; padding: 3px 10px; border-radius: 100px;
border: 1px solid var(–border);
}

/* ─── EXPERIENCE ─── */
#experience {
background: var(–text);
padding: clamp(64px,10vw,120px) clamp(16px,5vw,64px);
position: relative; overflow: hidden;
}
#experience::before {
content: ‘’;
position: absolute; top: -100px; right: -100px;
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(232,148,58,0.15) 0%, transparent 70%);
pointer-events: none;
}
.exp-inner {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
}
.exp-left .section-heading { color: var(–white); }
.exp-left .section-lead { color: rgba(255,255,255,0.5); }
.exp-nums {
display: grid; grid-template-columns: 1fr 1fr;
gap: 24px; margin-top: 44px;
}
.exp-num-item {
padding: 24px;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
background: rgba(255,255,255,0.03);
transition: background 0.3s;
}
.exp-num-item:hover { background: rgba(232,148,58,0.1); border-color: rgba(232,148,58,0.3); }
.en-num {
font-family: ‘Syne’, sans-serif;
font-size: 42px; font-weight: 800;
color: var(–saffron); line-height: 1;
}
.en-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

.exp-right {
display: grid; grid-template-columns: 1fr 1fr;
gap: 16px;
}
.exp-img-item {
border-radius: 16px; overflow: hidden;
aspect-ratio: 3/4;
}
.exp-img-item:nth-child(2) { margin-top: 32px; }
.exp-img-item img {
width: 100%; height: 100%;
object-fit: cover; display: block;
transition: transform 0.5s;
}
.exp-img-item:hover img { transform: scale(1.05); }

/* ─── TESTIMONIALS ─── */
#testimonials {
padding: clamp(64px,10vw,120px) clamp(16px,5vw,64px);
background: var(–warm-white);
}
.testi-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 24px; margin-top: 48px;
}
.testi-card {
background: var(–white); border-radius: 20px;
padding: 28px; border: 1px solid var(–border);
transition: all 0.3s;
}
.testi-card:hover {
box-shadow: 0 12px 36px rgba(0,0,0,0.08);
border-color: var(–saffron-light);
transform: translateY(-3px);
}
.testi-quote {
font-family: ‘Lora’, serif;
font-style: italic; font-size: 15px;
line-height: 1.75; color: var(–text2);
margin-bottom: 20px;
}
.testi-quote::before { content: ‘”’; color: var(–saffron); font-size: 36px; line-height: 0.5; display: block; margin-bottom: 12px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
width: 44px; height: 44px; border-radius: 50%;
object-fit: cover;
border: 2px solid var(–saffron-pale);
}
.testi-name { font-size: 14px; font-weight: 700; color: var(–text); }
.testi-role { font-size: 12px; color: var(–muted); }
.testi-stars { color: #F5A623; font-size: 12px; letter-spacing: 2px; margin-bottom: 6px; }

/* ─── RESERVATION ─── */
#reservation {
padding: clamp(64px,10vw,120px) clamp(16px,5vw,64px);
background: var(–cream);
}
.res-inner {
max-width: 1100px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1.1fr;
gap: 72px; align-items: start;
}
.res-info { padding-top: 8px; }
.res-hours { margin-top: 36px; }
.res-hours-title {
font-size: 11px; letter-spacing: 2px;
text-transform: uppercase; color: var(–saffron);
font-weight: 600; margin-bottom: 16px;
}
.hours-row {
display: flex; justify-content: space-between;
align-items: center; padding: 12px 0;
border-bottom: 1px solid var(–border);
font-size: 14px;
}
.hours-day { font-weight: 500; }
.hours-time { color: var(–muted); }
.hours-badge {
background: var(–green-pale); color: var(–green);
font-size: 10px; font-weight: 600;
padding: 3px 10px; border-radius: 100px;
}
.res-contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.res-contact-item {
display: flex; align-items: center; gap: 14px;
text-decoration: none;
}
.rci-icon {
width: 44px; height: 44px; border-radius: 12px;
background: var(–saffron-pale);
display: flex; align-items: center; justify-content: center;
font-size: 20px; flex-shrink: 0;
}
.rci-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(–muted); font-weight: 600; }
.rci-val { font-size: 14px; font-weight: 500; color: var(–text); transition: color 0.2s; }
.res-contact-item:hover .rci-val { color: var(–saffron); }

.res-form {
background: var(–white);
border-radius: 24px; padding: 40px;
border: 1px solid var(–border);
box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.res-form-title {
font-family: ‘Syne’, sans-serif;
font-size: 26px; font-weight: 800;
color: var(–text); margin-bottom: 6px;
}
.res-form-sub { font-size: 13px; color: var(–muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
display: block; font-size: 11px;
letter-spacing: 1.5px; text-transform: uppercase;
color: var(–muted); font-weight: 600; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
background: var(–warm-white);
border: 1.5px solid var(–border);
border-radius: 12px;
padding: 13px 16px;
font-family: ‘DM Sans’, sans-serif;
font-size: 14px; color: var(–text);
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(–saffron);
box-shadow: 0 0 0 3px rgba(232,148,58,0.12);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-success {
display: none; text-align: center;
padding: 20px; border-radius: 14px;
background: var(–green-pale);
border: 1px solid rgba(42,107,79,0.2);
color: var(–green); font-size: 15px;
margin-top: 16px; font-weight: 500;
}

/* ─── MAP STRIP ─── */
.map-strip {
height: 320px; background: var(–warm-white);
display: flex; align-items: center; justify-content: center;
flex-direction: column; gap: 14px;
position: relative; overflow: hidden;
}
.map-strip::before {
content: ‘’;
position: absolute; inset: 0;
background: linear-gradient(135deg, var(–saffron-pale) 0%, var(–green-pale) 100%);
}
.map-pin-wrap { position: relative; z-index: 1; text-align: center; }
.map-emoji { font-size: 56px; display: block; margin-bottom: 10px; animation: bounce 2s infinite; }
@keyframes bounce {
0%,100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.map-name {
font-family: ‘Syne’, sans-serif;
font-size: 22px; font-weight: 800; color: var(–text);
}
.map-addr { font-size: 14px; color: var(–muted); margin-top: 4px; }
.map-link {
display: inline-flex; align-items: center; gap: 8px;
background: var(–saffron); color: var(–white);
padding: 12px 28px; border-radius: 100px;
font-size: 13px; font-weight: 600;
text-decoration: none; margin-top: 16px;
transition: all 0.2s;
box-shadow: 0 6px 20px rgba(232,148,58,0.3);
}
.map-link:hover { background: var(–saffron-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
background: var(–text); color: rgba(255,255,255,0.6);
padding: clamp(48px,8vw,80px) clamp(16px,5vw,64px) 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px; margin-bottom: 48px;
}
.footer-brand-desc {
font-size: 13px; font-weight: 300; line-height: 1.8;
color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.fsoc {
width: 38px; height: 38px;
background: rgba(255,255,255,0.07);
border-radius: 50%; display: flex;
align-items: center; justify-content: center;
font-size: 16px; text-decoration: none;
transition: background 0.2s;
}
.fsoc:hover { background: var(–saffron); }
.footer-col h5 {
font-family: ‘Syne’, sans-serif;
font-size: 12px; letter-spacing: 2px;
text-transform: uppercase;
color: var(–saffron); font-weight: 700;
margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
font-size: 13px; color: rgba(255,255,255,0.4);
text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.footer-col ul a:hover { color: var(–saffron-light); }
.footer-bottom {
display: flex; justify-content: space-between; align-items: center;
padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
#hero { grid-template-columns: 1fr; min-height: auto; }
.hero-right { height: 55vw; }
.hero-right::before { background: linear-gradient(to top, var(–cream) 0%, transparent 40%); }
.story-grid { grid-template-columns: 1fr; gap: 48px; }
.story-img-accent { display: none; }
.exp-inner { grid-template-columns: 1fr; gap: 48px; }
.res-inner { grid-template-columns: 1fr; gap: 48px; }
.footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
.nav-links { display: none; }
.hamburger { display: flex; }
.hero-right { height: 70vw; }
.form-row { grid-template-columns: 1fr; }
.exp-right { grid-template-columns: 1fr 1fr; }
.footer-top { grid-template-columns: 1fr; }
.menu-tabs { flex-wrap: wrap; border-radius: 16px; }
}

