/* ================================================
   KAHRAMAN MOBİLYA — style.css
   Palette: Deep Forest Green + Warm Ivory + Gold
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ── Core Palette ── */
  --forest:      #1C2B1E;   /* deep forest green – primary bg dark */
  --forest-mid:  #243227;   /* slightly lighter green */
  --forest-lite: #2E4033;   /* card/surface dark */
  --sage:        #4A6350;   /* mid green */
  --sage-lite:   #6B8C72;   /* muted green */
  --mint:        #A8C5AE;   /* light accent green */

  --gold:        #C9A84C;   /* primary gold accent */
  --gold-lite:   #E2C27A;   /* lighter gold */
  --gold-dark:   #9A7A2E;   /* darker gold */
  --gold-pale:   #F5EDD5;   /* very pale gold for light bg */

  --ivory:       #F8F4EC;   /* warm ivory page bg */
  --ivory-dark:  #EEE8D8;   /* slightly darker ivory */
  --cream:       #FAF7F0;   /* near white */

  --ink:         #1A1E1B;   /* near black text */
  --ink-mid:     #3D4640;   /* medium text */
  --ink-muted:   #6B7570;   /* muted text */
  --ink-faint:   #9CA89F;   /* very muted */

  --border-dark: rgba(255,255,255,0.08);
  --border-mid:  rgba(255,255,255,0.14);
  --border-light:#E0D9C8;
  --border-gold: rgba(201,168,76,0.3);

  --nav-h: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  background: rgba(28,43,30,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid var(--border-gold);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--forest);
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: #fff; letter-spacing: .03em;
}
.logo-city { font-size: 10px; color: var(--gold-lite); letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  color: rgba(255,255,255,.65); font-size: 13.5px; font-weight: 400;
  padding: 8px 16px; border-radius: 8px; transition: all .2s; letter-spacing: .01em;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-menu a.active { color: var(--gold-lite); font-weight: 500; }
.nav-menu a.nav-btn {
  background: var(--gold); color: var(--forest) !important;
  font-weight: 600 !important; padding: 8px 22px; margin-left: 8px;
  border-radius: var(--radius-sm);
}
.nav-menu a.nav-btn:hover { background: var(--gold-lite); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE WRAPPER ── */
.pw { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--forest);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
  top: -10%; right: -5%; pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,99,80,.4) 0%, transparent 70%);
  bottom: 5%; left: 5%; pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 6%; max-width: 760px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,.08);
  color: var(--gold-lite); font-size: 11.5px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 28px;
}
.hero-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px); font-weight: 600;
  color: #fff; line-height: 1.08; margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 16.5px; color: rgba(255,255,255,.55);
  max-width: 500px; line-height: 1.8; margin-bottom: 44px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; border: none;
  font-family: 'Inter', sans-serif; letter-spacing: .02em;
  transition: all .22s; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-lite); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lite); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--border-light); }
.btn-outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO STATS ── */
.hero-stats {
  position: absolute; right: 6%; bottom: 9%; z-index: 2;
  display: flex; gap: 44px;
}
.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1;
}
.hstat-l { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION ── */
.section { padding: 88px 6%; }
.section-ivory { background: var(--ivory); }
.section-ivory-dark { background: var(--ivory-dark); }
.section-dark { background: var(--forest); }
.section-forest { background: var(--forest-mid); }

.sec-label {
  display: block; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dark);
  font-weight: 600; margin-bottom: 10px;
}
.sec-label.light { color: var(--gold-lite); }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 600;
  line-height: 1.15; color: var(--ink); letter-spacing: -.01em;
}
.sec-title.light { color: #fff; }
.sec-desc { font-size: 15.5px; color: var(--ink-muted); max-width: 560px; margin-top: 14px; font-weight: 300; line-height: 1.82; }
.sec-desc.light { color: rgba(255,255,255,.5); }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin-left: auto; margin-right: auto; }

/* ── SERVICE CARDS ── */
.srv-card {
  background: var(--forest-lite);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg); padding: 38px 34px;
  transition: all .3s; position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-lite));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.srv-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
}
.srv-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 600; color: #fff; margin-bottom: 12px;
}
.srv-card p { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.8; margin-bottom: 18px; }
.srv-list li {
  font-size: 13px; color: rgba(255,255,255,.6);
  padding: 5px 0 5px 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,.05);
}
.srv-list li:last-child { border: none; }
.srv-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 1px; background: var(--gold); }
.srv-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 13px; font-weight: 500; color: var(--gold-lite); transition: gap .2s; }
.srv-link:hover { gap: 10px; }

/* ── GRID ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ga { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 24px; }
.ga-sm { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }

/* ── PROCESS ── */
.proc-step { text-align: center; padding: 32px 20px; }
.proc-n {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: rgba(201,168,76,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--gold);
  margin: 0 auto 20px;
}
.proc-step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.proc-step p { font-size: 13.5px; color: var(--ink-muted); font-weight: 300; }

/* ── TESTIMONIALS ── */
.tcard {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 28px;
}
.tcard .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-size: 14.5px; color: var(--ink-mid); font-weight: 300; line-height: 1.82; font-style: italic; margin-bottom: 20px; }
.tauthor { display: flex; gap: 12px; align-items: center; }
.tavatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lite); font-weight: 600; font-size: 14px;
}
.tname { font-size: 14px; font-weight: 600; color: var(--ink); }
.tloc { font-size: 12px; color: var(--ink-faint); }

/* ── STAT CARD ── */
.stat {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 22px 18px; text-align: center;
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700; color: var(--forest); line-height: 1;
}
.stat-l { font-size: 12px; color: var(--ink-faint); margin-top: 5px; }

/* ── PAGE HERO (inner) ── */
.ph {
  background: var(--forest);
  padding: 68px 6% 60px;
  position: relative; overflow: hidden;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.12), transparent 65%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-lite); }
.ph h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 600;
  color: #fff; line-height: 1.1; letter-spacing: -.01em;
}
.ph h1 em { color: var(--gold); font-style: italic; }
.ph-sub { font-size: 16px; color: rgba(255,255,255,.5); font-weight: 300; max-width: 480px; margin-top: 8px; }

/* ── ACCORDION ── */
.acc-item { border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 8px; }
.acc-btn {
  width: 100%; padding: 16px 22px; background: #fff; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500;
  color: var(--ink); cursor: pointer; transition: background .18s; text-align: left; gap: 10px;
}
.acc-btn:hover { background: var(--ivory-dark); }
.acc-btn.open { background: var(--ivory-dark); border-bottom: 1px solid var(--border-light); }
.acc-icon { font-size: 14px; color: var(--gold-dark); transition: transform .3s; flex-shrink: 0; }
.acc-btn.open .acc-icon { transform: rotate(180deg); }
.acc-body { padding: 18px 22px; background: var(--cream); display: none; }
.acc-body.open { display: block; }

/* ── TAGS ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: #fff; border: 1px solid var(--border-light);
  color: var(--ink-mid); font-size: 13px; padding: 5px 14px;
  border-radius: 20px; transition: all .18s;
}
.tag:hover { background: var(--forest); color: var(--gold-lite); border-color: var(--forest); }

/* ── DISTRICT CARD ── */
.dc {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 20px 22px;
  transition: all .22s; position: relative;
}
.dc:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(201,168,76,.12); transform: translateY(-2px); }
.dc-name { font-weight: 600; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; }
.dc-sub { font-size: 12px; color: var(--ink-faint); }
.dc-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--forest); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* ── FORM ── */
.flabel { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink-mid); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .07em; }
.finput {
  width: 100%; padding: 12px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light); background: #fff;
  font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--ink);
  transition: border-color .18s; outline: none;
}
.finput:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,99,80,.08); }
.finput::placeholder { color: var(--ink-faint); }
textarea.finput { resize: vertical; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { margin-bottom: 18px; }

/* ── CONTACT ── */
.citem { display: flex; gap: 15px; margin-bottom: 24px; align-items: flex-start; }
.cicon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--ivory-dark); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.clabel { font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.cval { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.cval a { color: var(--ink); transition: color .18s; }
.cval a:hover { color: var(--forest); }

/* ── HOURS ── */
.hrow { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; }
.hrow:last-child { border: none; }
.hday { color: var(--ink-mid); }
.htime { font-weight: 500; color: var(--ink); }
.hbadge { font-size: 11px; padding: 2px 10px; border-radius: 10px; }
.hopen { background: rgba(46,64,51,.1); color: var(--forest); font-weight: 600; }
.hclosed { background: var(--ivory-dark); color: var(--ink-faint); }

/* ── GALLERY ── */
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gal-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer; transition: transform .3s;
  background: var(--forest-lite);
}
.gal-item:hover { transform: scale(1.025); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.gal-item:nth-child(1), .gal-item:nth-child(7) { grid-column: span 2; }
.gal-thumb { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 24px; }
.gal-thumb.wide { aspect-ratio: 16/7; }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(28,43,30,.82);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s; padding: 20px; text-align: center;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay h4 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 18px; margin-bottom: 5px; }
.gal-overlay p { color: rgba(255,255,255,.55); font-size: 13px; font-weight: 300; }
.gal-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--forest); font-size: 10.5px; font-weight: 700; padding: 3px 11px; border-radius: 10px; }

/* ── FILTER BTNS ── */
.fbtn { padding: 7px 20px; border-radius: 20px; border: 1.5px solid var(--border-light); background: #fff; color: var(--ink-mid); font-family: 'Inter',sans-serif; font-size: 13px; cursor: pointer; transition: all .18s; }
.fbtn:hover { border-color: var(--sage); color: var(--forest); }
.fbtn.active { background: var(--forest); color: var(--gold-lite); border-color: var(--forest); }

/* ── UPLOAD ── */
.upload-zone { border: 2px dashed var(--border-light); border-radius: var(--radius-md); padding: 40px; text-align: center; cursor: pointer; transition: all .2s; }
.upload-zone:hover { border-color: var(--sage); background: rgba(74,99,80,.04); }
.upload-zone input { display: none; }

/* ── CTA BANNER ── */
.cta-bar {
  background: var(--forest); padding: 76px 6%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,.14), transparent 65%);
}
.cta-bar > * { position: relative; z-index: 1; }

/* ── ABOUT VISUAL ── */
.about-visual {
  background: var(--forest-lite);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-xl); padding: 50px;
  text-align: center; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.1), transparent 60%);
}

/* ── FOOTER ── */
.footer { background: var(--forest); padding: 72px 6% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 52px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.4); max-width: 270px; margin: 14px 0 22px; line-height: 1.75; font-weight: 300; }
.fsocials { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .18s; text-decoration: none;
}
.fsoc:hover { background: rgba(201,168,76,.2); border-color: rgba(201,168,76,.4); }
.fcol h4 { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.fcol li { margin-bottom: 9px; }
.fcol a { color: rgba(255,255,255,.42); font-size: 13.5px; transition: color .18s; }
.fcol a:hover { color: var(--gold-lite); }
.footer-bot { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 8px; }

/* ── WA FLOAT ── */
.wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 9998;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all .25s;
}
.wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.a1 { animation: fadeUp .6s .0s both; }
.a2 { animation: fadeUp .6s .12s both; }
.a3 { animation: fadeUp .6s .24s both; }
.a4 { animation: fadeUp .6s .36s both; }
.a5 { animation: fadeUp .6s .48s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 800px) {
  .g2 { grid-template-columns: 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-item:nth-child(1), .gal-item:nth-child(7) { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(28,43,30,.98); padding: 14px 5%; gap: 3px;
    border-bottom: 1px solid var(--border-gold);
  }
  .nav-menu.open a { padding: 12px 16px; font-size: 15px; }
  .hamburger { display: flex; }
  .g3 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 62px 4%; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item:nth-child(1), .gal-item:nth-child(7) { grid-column: span 1; }
  .footer-bot { flex-direction: column; text-align: center; }
}
