/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── PALETTE — Travertine & Gold ── */
:root {
  --cream:     #f5f0e8;
  --linen:     #ede4d5;
  --sand:      #ddd0bc;
  --pebble:    #c4b59e;
  --ink:       #141008;
  --deep:      #1e1710;
  --bark:      #2a1f13;
  --text:      #1c1810;
  --body:      #564636;
  --mute:      #8a6f5a;
  --gold:      #9e6e22;
  --gold-hi:   #c8904a;
  --gold-pale: #e4c88a;
  --gold-rule: rgba(158,110,34,.16);
  --ivory:     #f2ebe0;
  --bronze:    #9e6e22;
  --amber:     #c8904a;
  --parchment: #a09080;
  --mist:      #6a5a4a;
  --rust:      #7a5222;
  --font-serif:'Cormorant Garamond','Playfair Display',Georgia,serif;
  --font-sans: 'DM Sans','Inter',system-ui,sans-serif;
  --max:       1200px;
  --gutter:    clamp(1.5rem,4vw,3rem);
}

/* ── BASE ── */
::-webkit-scrollbar { width: 3px }
::-webkit-scrollbar-track { background: var(--linen) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; color: var(--text) }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) }

/* ── LABEL ── */
.label { display: inline-flex; align-items: center; gap: .75rem; font-family: var(--font-sans); font-size: .68rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem }
.label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0 }

/* ── BUTTONS ── */
.btn-solid { display: inline-block; padding: .9rem 2.4rem; background: var(--gold); color: #fff; font-family: var(--font-sans); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: background .25s, transform .2s, box-shadow .25s }
.btn-solid:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(158,110,34,.25) }
.btn-outline { display: inline-flex; align-items: center; gap: .7rem; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); transition: color .25s }
.btn-outline::before { content: ''; width: 28px; height: 1px; background: var(--pebble); transition: width .35s, background .25s }
.btn-outline:hover { color: var(--gold) }
.btn-outline:hover::before { width: 48px; background: var(--gold) }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease }
.reveal.in { opacity: 1; transform: translateY(0) }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .8s ease, transform .8s ease }
.reveal-left.in { opacity: 1; transform: translateX(0) }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .8s ease, transform .8s ease }
.reveal-right.in { opacity: 1; transform: translateX(0) }
.delay-1 { transition-delay: .12s } .delay-2 { transition-delay: .24s } .delay-3 { transition-delay: .36s } .delay-4 { transition-delay: .48s }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(8,6,3,.97); z-index: 8000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s }
.lightbox.open { opacity: 1; pointer-events: all }
.lb-img-wrap { position: relative; max-width: 88vw; max-height: 86vh; display: flex; align-items: center; justify-content: center }
#lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; transition: opacity .18s; box-shadow: 0 32px 80px rgba(0,0,0,.6) }
.lb-btn { position: fixed; background: none; border: none; color: rgba(242,235,224,.7); transition: color .2s, transform .2s; line-height: 1; padding: 0 }
.lb-btn:hover { color: var(--gold-pale); transform: scale(1.1) }
.lb-close { top: 1.8rem; right: 2.2rem }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(242,235,224,.12) }
.lb-nav:hover { transform: translateY(-50%) scale(1.05); border-color: rgba(228,200,138,.4) }
.lb-prev { left: 1.8rem }
.lb-next { right: 1.8rem }
.lb-counter { position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(242,235,224,.4) }

/* ── NAV ── */
#site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 1.8rem var(--gutter); display: flex; align-items: center; justify-content: space-between; transition: all .45s }
#site-nav.scrolled { background: rgba(245,240,232,.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 1rem var(--gutter); border-bottom: 1px solid var(--gold-rule); box-shadow: 0 1px 32px rgba(30,24,16,.05) }
.nav-logo { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--ivory); letter-spacing: .06em }
.nav-logo em { font-style: normal; color: var(--gold-pale) }
#site-nav.scrolled .nav-logo { color: var(--text) }
#site-nav.scrolled .nav-logo em { color: var(--gold) }
.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center }
.nav-links a { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(242,235,224,.6); transition: color .25s; position: relative; padding-bottom: 2px }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold-pale); transition: width .3s }
.nav-links a:hover { color: var(--ivory) }
.nav-links a:hover::after { width: 100% }
#site-nav.scrolled .nav-links a { color: var(--mute) }
#site-nav.scrolled .nav-links a:hover { color: var(--gold) }
#site-nav.scrolled .nav-links a::after { background: var(--gold) }
.nav-cta { padding: .48rem 1.5rem; border: 1px solid rgba(242,235,224,.3) !important; color: var(--ivory) !important }
.nav-cta:hover { background: rgba(242,235,224,.1) !important }
#site-nav.scrolled .nav-cta { border-color: var(--gold-rule) !important; color: var(--gold) !important }
#site-nav.scrolled .nav-cta:hover { background: var(--gold) !important; color: #fff !important }
.nav-cta::after { display: none !important }
@media(max-width:768px) { .nav-links { display: none } }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 720px; display: flex; align-items: flex-end; padding-bottom: 8rem; overflow: hidden }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; transform: scale(1.05); transition: transform 8s ease }
.hero-bg.loaded { transform: scale(1) }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,10,5,.94) 0%, rgba(14,10,5,.42) 42%, rgba(14,10,5,.12) 75%, transparent 100%) }
.hero-content { position: relative; z-index: 2; max-width: 780px }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 1rem; font-size: .66rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 1.8rem; opacity: 0; transform: translateY(14px); animation: fu .8s .2s forwards }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-pale); flex-shrink: 0 }
.hero h1 { font-size: clamp(3rem,7vw,5.8rem); font-weight: 700; color: #faf7f2; line-height: 1.04; margin-bottom: 1.6rem; opacity: 0; transform: translateY(24px); animation: fu .9s .38s forwards }
.hero h1 i { font-style: italic; color: var(--gold-pale) }
.hero-sub { font-size: 1.05rem; color: rgba(242,235,224,.68); font-weight: 300; max-width: 460px; margin-bottom: 2.8rem; line-height: 1.8; opacity: 0; transform: translateY(14px); animation: fu .8s .58s forwards }
.hero-actions { display: flex; gap: 1.8rem; align-items: center; opacity: 0; animation: fu .8s .76s forwards }
.hero-actions .btn-outline { color: rgba(242,235,224,.65) }
.hero-actions .btn-outline:hover { color: var(--ivory) }
.hero-actions .btn-outline::before { background: rgba(242,235,224,.3) }
.hero-actions .btn-outline:hover::before { background: var(--gold-pale) }
.hero-rule { position: absolute; bottom: 2.8rem; left: var(--gutter); right: var(--gutter); z-index: 2; display: flex; align-items: center; gap: 1.4rem; opacity: 0; animation: fi 1s 1.2s forwards }
.hero-rule::before, .hero-rule::after { content: ''; flex: 1; height: 1px; background: rgba(242,235,224,.1) }
.hero-rule span { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(242,235,224,.3); white-space: nowrap }
@media(max-width:768px) { .hero { padding-bottom: 6rem } .hero-rule { display: none } }

/* ── STATS ── */
.stats { background: var(--linen); border-top: 1px solid var(--gold-rule); border-bottom: 1px solid var(--gold-rule); padding: 0 }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr) }
.stat { padding: 2.4rem 2rem; text-align: center; border-right: 1px solid var(--sand); position: relative }
.stat:last-child { border-right: none }
.stat-num { font-family: var(--font-serif); font-size: 3.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .4rem }
.stat-lbl { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute) }
@media(max-width:768px) { .stats-grid { grid-template-columns: repeat(2,1fr) } .stat { border-bottom: 1px solid var(--sand) } .stat:nth-child(2) { border-right: none } .stat:nth-child(3) { border-bottom: none } .stat:last-child { border-bottom: none } }

/* ── ABOUT ── */
.about { padding: 9rem 0; background: var(--cream) }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center }
.about-copy p { font-size: 1rem; color: var(--body); line-height: 1.9; font-weight: 300; margin-bottom: 1.4rem }
.about-pull { font-family: var(--font-serif); font-size: 1.35rem; font-style: italic; color: var(--text); line-height: 1.5; border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 2rem 0; opacity: .8 }
.about-signature { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--gold); margin-top: 2.2rem }
.about-visual { position: relative; height: 580px }
.about-img-main { position: absolute; right: 0; top: 0; width: 84%; height: 88%; object-fit: cover; box-shadow: 0 24px 64px rgba(30,24,16,.14) }
.about-img-accent { position: absolute; left: 0; bottom: 0; width: 50%; height: 52%; object-fit: cover; border: 5px solid var(--cream); box-shadow: 0 12px 36px rgba(30,24,16,.10) }
.about-badge { position: absolute; right: -1rem; bottom: 28%; width: 112px; height: 112px; border-radius: 50%; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(158,110,34,.1) }
.about-badge strong { font-family: var(--font-serif); font-size: 2rem; color: #fff; line-height: 1 }
.about-badge small { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8) }
@media(max-width:1024px) { .about-grid { grid-template-columns: 1fr; gap: 4rem } .about-visual { order: -1; height: 420px } }

/* ── SERVICES ── */
.services { padding: 9rem 0; background: var(--bark) }
.services-header { text-align: center; max-width: 560px; margin: 0 auto 4.5rem }
.services-header h2 { color: var(--ivory) }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px }
.srv-card { position: relative; overflow: hidden; height: 480px }
.srv-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s ease; filter: brightness(.42) }
.srv-card:hover img { transform: scale(1.07); filter: brightness(.28) }
.srv-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.4rem 2.2rem; background: linear-gradient(to top, rgba(14,10,5,.9) 0%, transparent 60%) }
.srv-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: rgba(200,144,74,.15); line-height: 1; margin-bottom: .5rem; transition: color .4s }
.srv-card:hover .srv-num { color: rgba(200,144,74,.45) }
.srv-card h3 { font-family: var(--font-serif); font-size: 1.4rem; color: #faf6f0; margin-bottom: .7rem }
.srv-card p { font-size: .85rem; color: rgba(242,235,224,.58); font-weight: 300; line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .55s ease }
.srv-card:hover p { max-height: 100px }
.srv-icon { position: absolute; top: 2rem; right: 2rem; width: 40px; height: 40px; border: 1px solid rgba(200,144,74,.3); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-8px); transition: all .35s }
.srv-card:hover .srv-icon { opacity: 1; transform: translateY(0) }
@media(max-width:768px) { .services-grid { grid-template-columns: 1fr } .srv-card { height: 300px } }

/* ── SERVICES LIST ── */
.srv-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 1px; margin-top: 1px }
.srv-pill { display: flex; flex-direction: column; align-items: center; gap: .8rem; padding: 1.9rem 1.2rem; background: var(--linen); border-bottom: 2px solid transparent; transition: background .28s, border-color .28s; text-align: center }
.srv-pill:hover { background: var(--cream); border-bottom-color: var(--gold) }
.srv-pill-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: transform .28s }
.srv-pill-icon svg { width: 100%; height: 100% }
.srv-pill:hover .srv-pill-icon { transform: scale(1.18) }
.srv-pill span { font-size: .76rem; letter-spacing: .05em; color: var(--body); font-weight: 400; transition: color .28s; line-height: 1.35 }
.srv-pill:hover span { color: var(--text) }
@media(max-width:600px) { .srv-list { grid-template-columns: repeat(auto-fill,minmax(120px,1fr)) } }

/* ── GALLERY ── */
.gallery { background: var(--ink); padding: 7rem 0 0 }
.gallery-head { padding-bottom: 2.5rem }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1.2rem }
.gallery-header h2 { color: var(--ivory); font-size: clamp(2rem,4vw,3rem) }
.gallery-header .btn-outline { color: rgba(242,235,224,.55) }
.gallery-header .btn-outline:hover { color: var(--gold-pale) }
.gallery-header .btn-outline::before { background: rgba(200,144,74,.35) }
.gallery-tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,.07) }
.tab-btn { padding: .6rem 1.4rem; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; background: transparent; color: rgba(160,144,128,.7); font-family: var(--font-sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; transition: all .25s }
.tab-btn.active { color: var(--gold-pale); border-bottom-color: var(--gold) }
.tab-btn:hover:not(.active) { color: rgba(228,200,138,.7) }

/* Masonry grid */
.gallery-masonry { columns: 4 200px; column-gap: 4px; padding: 4px 0 0; transition: opacity .28s ease, transform .32s ease }
.gal-item { break-inside: avoid; margin-bottom: 4px; overflow: hidden; position: relative; cursor: pointer }
.gal-item.gal-hidden { display: none }

/* Orientasyona göre sabit oran — yatay/dikey doğru görünsün */
.gal-item.gal-p { aspect-ratio: 3/4 }
.gal-item.gal-l { aspect-ratio: 4/3 }
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .5s }
.gal-item:hover img { transform: scale(1.05); filter: brightness(1.05) }

/* Overlay */
.gal-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity .38s; background: linear-gradient(to top, rgba(14,10,5,.8) 0%, rgba(14,10,5,.15) 40%, transparent 65%); display: flex; align-items: flex-end; justify-content: space-between; padding: 1.1rem 1.1rem .9rem; pointer-events: none }
.gal-item:hover .gal-overlay { opacity: 1 }
.gal-cat { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-pale) }
.gal-zoom { width: 30px; height: 30px; border: 1px solid rgba(242,235,224,.3); display: flex; align-items: center; justify-content: center; color: var(--ivory); flex-shrink: 0; transform: scale(.82) rotate(-8deg); transition: transform .38s; pointer-events: none }
.gal-item:hover .gal-zoom { transform: scale(1) rotate(0deg) }

@media(max-width:1024px) { .gallery-masonry { columns: 3 } }
@media(max-width:768px) { .gallery-masonry { columns: 2 } .gallery { padding-top: 6rem } }
@media(max-width:480px) { .gallery-masonry { columns: 1 } }

/* ── PROCESS ── */
.process { padding: 9rem 0; background: var(--linen) }
.process-header { text-align: center; max-width: 520px; margin: 0 auto 5.5rem }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative }
.process-steps::before { content: ''; position: absolute; top: 25px; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg, var(--gold) 0%, rgba(158,110,34,.12) 100%) }
.step { padding: 0 1.2rem; text-align: center }
.step-dot { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.6rem; background: var(--linen); position: relative; z-index: 1; transition: background .3s, box-shadow .3s }
.step:hover .step-dot { background: var(--cream); box-shadow: 0 0 0 6px rgba(158,110,34,.08) }
.step-dot span { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--gold) }
.step h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text); margin-bottom: .55rem }
.step p { font-size: .82rem; color: var(--mute); line-height: 1.65 }
@media(max-width:1024px) { .process-steps::before { display: none } .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem } }
@media(max-width:480px) { .process-steps { grid-template-columns: 1fr } }

/* ── BEFORE/AFTER ── */
.ba { padding: 9rem 0; background: var(--cream) }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; position: relative }
.ba-panel { position: relative; aspect-ratio: 4/3; overflow: hidden }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease }
.ba-panel:hover img { transform: scale(1.03) }
.ba-tag { position: absolute; top: 1.4rem; left: 1.4rem; padding: .3rem .9rem; background: rgba(245,240,232,.95); border-left: 2px solid var(--gold); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold) }
.ba-divider { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 10; width: 52px; height: 52px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(158,110,34,.35) }
.ba-divider svg { stroke: #fff !important }
@media(max-width:768px) { .ba-grid { grid-template-columns: 1fr } .ba-divider { display: none } }

/* ── TESTIMONIALS ── */
.testimonials { padding: 9rem 0; background: var(--linen); overflow: hidden }
.testimonials-header { text-align: center; margin-bottom: 4rem }
.testi-track { display: flex; gap: 1.4rem; animation: marquee 40s linear infinite; width: max-content; padding: .5rem 0 1.5rem }
.testi-track:hover { animation-play-state: paused }
.testi-card { width: 360px; flex-shrink: 0; padding: 2rem 2rem 1.8rem; background: var(--cream); border: 1px solid var(--sand); box-shadow: 0 2px 20px rgba(30,24,16,.04); transition: box-shadow .3s }
.testi-card:hover { box-shadow: 0 8px 40px rgba(30,24,16,.08) }
.quote { font-family: var(--font-serif); font-size: 4rem; color: var(--gold); line-height: .4; margin-bottom: .9rem; opacity: .25 }
.testi-text { font-size: .9rem; color: var(--body); line-height: 1.75; font-style: italic; margin-bottom: 1.6rem }
.testi-author { display: flex; align-items: center; gap: .9rem }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; color: #fff; font-size: .95rem; flex-shrink: 0 }
.testi-name { font-size: .86rem; font-weight: 600; color: var(--text); margin-bottom: .1rem }
.testi-loc { font-size: .7rem; letter-spacing: .08em; color: var(--mute) }

/* ── CONTACT ── */
.contact { padding: 9rem 0; background: var(--cream) }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 7rem; align-items: start }
.contact p { font-size: .98rem; color: var(--body); font-weight: 300; line-height: 1.85; margin-bottom: 2.8rem }
.contact-detail { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.5rem }
.contact-icon { width: 42px; height: 42px; border: 1px solid var(--gold-rule); background: var(--linen); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold) }
.contact-icon svg { width: 18px; height: 18px }
.contact-text dt { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: .2rem }
.contact-text dd { font-size: .92rem; color: var(--text); font-weight: 400 }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem }
.form-group { display: flex; flex-direction: column; gap: .36rem }
.form-group label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute) }
.form-group input, .form-group select, .form-group textarea { background: var(--linen); border: 1px solid var(--sand); color: var(--text); padding: .85rem 1.1rem; font-family: var(--font-sans); font-size: .92rem; outline: none; transition: border-color .25s, background .25s; width: 100%; -webkit-appearance: none }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--pebble) }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--cream) }
.form-group textarea { height: 140px; resize: vertical }
.form-group select option { background: var(--linen); color: var(--text) }
.form-submit { padding: 1rem 2.8rem; background: var(--gold); border: none; color: #fff; font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: background .25s, transform .2s, box-shadow .25s; align-self: flex-start }
.form-submit:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(158,110,34,.25) }
@media(max-width:1024px) { .contact-grid { grid-template-columns: 1fr; gap: 4rem } }
@media(max-width:768px) { .form-row { grid-template-columns: 1fr } }

/* ── FOOTER ── */
footer { background: var(--bark); border-top: 1px solid rgba(200,144,74,.1); padding: 5rem 0 2.5rem }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem }
.footer-brand p { font-size: .82rem; color: var(--parchment); line-height: 1.75; max-width: 260px; margin-top: .9rem }
.footer-col h5 { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem }
.footer-col ul { list-style: none }
.footer-col li, .footer-col a { font-size: .82rem; color: var(--parchment); margin-bottom: .55rem; transition: color .25s; display: block }
.footer-col li:hover, .footer-col a:hover { color: var(--ivory) }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem }
.footer-bottom p { font-size: .72rem; color: var(--mist) }
.footer-socials { display: flex; gap: .6rem }
.soc-link { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--parchment); letter-spacing: 0; transition: all .25s }
.soc-link:hover { border-color: var(--gold); color: var(--gold) }
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr } }

/* ── KEYFRAMES ── */
@keyframes fu { to { opacity: 1; transform: translateY(0) } }
@keyframes fi { to { opacity: 1 } }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .2 } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
