/* ═══════════════════════════════════════════════════
   DO NAIL STUDIO — HIGH FASHION EDITORIAL
   Konsept: Krem zemin, koyu espresso tipografi,
   pudra aksan. Asimetrik grid. Sofistike hareket.
   ═══════════════════════════════════════════════════ */

:root {
  --c-bg:      #FAF8F5;
  --c-warm:    #F3EDE5;
  --c-ink:     #2A2220;
  --c-ink2:    #4A3E3C;
  --c-muted:   #9B8E8B;
  --c-pudra:   #C9897E;
  --c-pudra2:  #A86F67;
  --c-line:    rgba(42,34,32,.07);

  --f-display: 'Fraunces', serif;
  --f-serif:   'Libre Baskerville', serif;
  --f-body:    'Outfit', sans-serif;

  --ease:  cubic-bezier(.22,1,.36,1);
  --ease2: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Noise grain overlay ────────────────────────── */
body::before {
  content:''; position:fixed; inset:0; z-index:1;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity:.4;
}

/* ═══ HEADER ═══════════════════════════════════════ */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 78px; width: 100%;
  display: flex; align-items: center;
  padding: 0 4vw;
  transition: background .5s var(--ease), border-color .5s ease;
}
.hdr.stuck {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-line);
}
.hdr-eco {
  display: flex; align-items: center; gap: 4px;
  padding-right: 24px;
  border-right: 1px solid var(--c-line);
}
.eco-brand {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 6px 10px; border-radius: 8px;
  transition: background .3s ease;
}
.eco-brand:hover { background: var(--c-warm); }
.eco-brand img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: contain;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.eco-brand span {
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--c-muted); font-family: var(--f-body); font-weight: 400;
}
.hdr-brand { flex: 1; text-align: center; }
.hdr-name {
  font-family: var(--f-display);
  font-size: 15px; font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-ink); font-style: italic;
}
.hdr-right { display: flex; align-items: center; gap: 36px; }
.hdr-nav { display: flex; gap: 32px; list-style: none; }
.hdr-nav a {
  font-size: 10px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-ink2);
  position: relative; padding-bottom: 3px;
  transition: color .3s ease;
}
.hdr-nav a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--c-pudra);
  transition: width .5s var(--ease);
}
.hdr-nav a:hover { color:var(--c-ink); }
.hdr-nav a:hover::after { width:100%; }

.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; font-family: var(--f-body);
  color: var(--c-bg); background: var(--c-ink);
  border: 1px solid var(--c-ink);
  padding: 11px 24px; border-radius: 2px;
  transition: background .4s var(--ease), color .4s ease, border-color .4s ease;
}
.hdr-cta:hover { background: var(--c-pudra); border-color: var(--c-pudra); }

.hdr-ham {
  display:none; flex-direction:column; gap:6px;
  background:none; border:none; padding:6px; margin-left:4px;
}
.hdr-ham span {
  width:22px; height:1px; background:var(--c-ink);
  transition: all .4s var(--ease); display:block;
}

/* ═══ MOBILE OVERLAY ════════════════════════════════ */
.mob {
  position:fixed; inset:0; z-index:2000;
  background: var(--c-ink);
  clip-path: circle(0% at calc(100% - 50px) 40px);
  transition: clip-path .9s var(--ease2);
  pointer-events:none;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
}
.mob.open { clip-path: circle(170% at calc(100% - 50px) 40px); pointer-events:auto; }
.mob-x {
  position:absolute; top:28px; right:4vw;
  background:none; border:none; color:rgba(250,248,245,.4);
  font-size:26px; transition: color .3s, transform .3s var(--ease);
}
.mob-x:hover { color:#fff; transform:rotate(90deg); }
.mob-links { list-style:none; text-align:center; width: 100%; }
.mob-links li {
  opacity:0; transform:translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  margin: 10px 0;
}
.mob.open .mob-links li { opacity:1; transform:none; }
.mob.open .mob-links li:nth-child(1){transition-delay:.18s}
.mob.open .mob-links li:nth-child(2){transition-delay:.25s}
.mob.open .mob-links li:nth-child(3){transition-delay:.32s}
.mob.open .mob-links li:nth-child(4){transition-delay:.39s}
.mob.open .mob-links li:nth-child(5){transition-delay:.46s}
.mob-links a {
  font-family: var(--f-display);
  font-size: clamp(28px,8vw,68px);
  font-style:italic; font-weight:200;
  color:rgba(250,248,245,.6);
  transition: color .3s;
}
.mob-links a:hover { color: var(--c-pudra); }
.mob-eco {
  display:flex; gap:14px; margin-top:50px;
  opacity:0; transition: opacity .5s .5s ease; flex-wrap: wrap; justify-content: center;
}
.mob.open .mob-eco { opacity:1; }
.mob-eco-item { display:flex; flex-direction:column; align-items:center; gap:6px; }
.mob-eco-item img {
  width:38px; height:38px; border-radius:50%; object-fit:contain;
  background:#fff; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.mob-eco-item span { font-size:8px; letter-spacing:2px; text-transform:uppercase; color:rgba(250,248,245,.3); }

/* ═══ HERO ══════════════════════════════════════════ */
.hero {
  min-height: 100svh; display: grid;
  grid-template-columns: 55% 45%;
  position: relative; overflow: hidden;
}
.hero-img-col { position: relative; overflow:hidden; clip-path: inset(0 0 0 0); }
.hero-img-col img {
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.08);
  animation: heroScale 10s var(--ease2) forwards;
  filter: saturate(.88) brightness(.97);
} 

@keyframes heroScale { to { transform:scale(1); } }

.hero-txt-col {
  display:flex; flex-direction:column; justify-content:center;
  padding:120px 7vw 80px 6vw; position:relative; z-index:2;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:10px;
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--c-pudra); font-weight:400; margin-bottom:32px;
  opacity:0; transform:translateY(12px);
  animation: revUp .7s var(--ease) .5s forwards;
}
.hero-tag::before { content:''; width:32px; height:1px; background:currentColor; }

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 82px);
  font-weight: 200; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 28px;
  opacity:0; transform:translateY(20px);
  animation: revUp .9s var(--ease) .65s forwards;
}
.hero-h1 em { font-style:italic; color:var(--c-pudra); display:block; }
.hero-sub {
  font-size:15px; font-weight:300; color:var(--c-muted);
  max-width:360px; line-height:1.85; margin-bottom: 45px;
  opacity:0; transform:translateY(12px);
  animation: revUp .8s var(--ease) .8s forwards;
}
.hero-btns {
  display:flex; gap:20px; align-items:center; flex-wrap:wrap;
  opacity:0; transform:translateY(12px);
  animation: revUp .8s var(--ease) .95s forwards;
}
.hero-stats {
  position:absolute; bottom:40px; right:7vw;
  display:flex; gap:32px; flex-wrap: wrap;
  opacity:0; animation: revUp .8s var(--ease) 1.3s forwards;
}
.hero-stat-num {
  font-family:var(--f-display); font-size:28px; font-weight:200;
  color:var(--c-ink); display:block; line-height:1;
}
.hero-stat-lbl {
  font-size:9px; letter-spacing:2px; text-transform:uppercase;
  color:var(--c-muted); margin-top:4px; display:block;
}
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation:revUp .8s var(--ease) 1.8s forwards; z-index:3;
}
.hero-scroll span { font-size:8px; letter-spacing:3px; text-transform:uppercase; color:var(--c-muted); }
.scroll-bar { width:1px; height:40px; background:var(--c-line); position:relative; overflow:hidden; }
.scroll-bar::after {
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--c-pudra); animation: scrollAnim 2s ease 2.2s infinite;
}
@keyframes scrollAnim { 0%{top:-100%} 100%{top:100%} }

/* ═══ BUTTONS ════════════════════════════════════════ */
.btn-dark {
  display:inline-flex; align-items:center; gap:10px; justify-content: center;
  font-family:var(--f-body); font-size:10px; font-weight:400;
  letter-spacing:2.5px; text-transform:uppercase;
  background:var(--c-ink); color:var(--c-bg);
  padding:16px 36px; border-radius:2px; 
  transition: all .5s var(--ease); position:relative; overflow:hidden;
}
.btn-dark::before {
  content:''; position:absolute; inset:0; background:var(--c-pudra);
  transform:translateY(100%); transition:transform .5s var(--ease); z-index:-1;
}
.btn-dark:hover { border-color:var(--c-pudra); }
.btn-dark:hover::before { transform:translateY(0); }
.btn-dark i { font-size:12px; transition:transform .4s var(--ease); }
.btn-dark:hover i { transform:translateX(4px); }

.btn-line {
  display:inline-flex; align-items:center; gap:12px;
  font-size:10px; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--c-muted); font-family:var(--f-body); font-weight:400;
  transition: color .4s ease;
}
.btn-line span { width:32px; height:1px; background:currentColor; display:inline-block; transition:width .5s var(--ease); }
.btn-line:hover { color:var(--c-ink); }
.btn-line:hover span { width:52px; }

/* ═══ MARQUEE ════════════════════════════════════════ */
.ticker {
  overflow:hidden; border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line); padding:14px 0; background:var(--c-warm);
}
.ticker-track { display:flex; width:max-content; animation:ticker 28s linear infinite; }
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  display:flex; align-items:center; gap:28px; padding:0 44px;
  font-family:var(--f-display); font-size:12px; font-style:italic;
  font-weight:200; color:var(--c-muted); white-space:nowrap; letter-spacing:1px;
}
.ticker-dot { width:3px; height:3px; border-radius:50%; background:var(--c-pudra); flex-shrink:0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══ ABOUT / SPLIT ═════════════════════════════════ */
.about { display:grid; grid-template-columns:1fr 1fr;  max-height: 600px}
.about-visual { position:relative; overflow:hidden; opacity: 1 !important;}
.about-visual img { width:100%; height:100%; object-fit:cover; filter:saturate(.82); transition:filter 1s ease, transform 1s var(--ease); }
.about-visual:hover img { filter:saturate(1); transform:scale(1.03); }
.about-badge { position:absolute; bottom:0; right:0; background:var(--c-ink); color:var(--c-bg); padding:28px 32px; text-align:center; }
.about-badge-num { font-family:var(--f-display); font-size:52px; font-weight:200; line-height:1; display:block; font-style:italic; }
.about-badge-lbl { font-size:8px; letter-spacing:3px; text-transform:uppercase; opacity:.4; margin-top:6px; display:block; }
.about-txt { display:flex; flex-direction:column; justify-content:center; padding:80px 8vw 80px 6vw; background:var(--c-warm);  opacity: 1 !important;}
.section-eyebrow { opacity: 1 !important; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:var(--c-pudra); font-weight:400; margin-bottom:20px; display:flex; align-items:center; gap:12px; }
.section-eyebrow::before { content:''; width:24px; height:1px; background:currentColor; }
.section-h2 { opacity: 1 !important; font-family:var(--f-display); font-size:clamp(28px,3.8vw,56px); font-weight:200; line-height:1.15; margin-bottom:24px; letter-spacing:-.5px; }
.section-h2 em { font-style:italic; color:var(--c-pudra2); }
.section-p { opacity: 1 !important; font-size:15px; color:var(--c-muted); line-height:1.9; max-width:440px; margin-bottom:44px; }
.about-kpis { text-align: center; opacity: 1 !important; display:flex; flex-wrap: wrap; gap: 0; margin-top:auto; padding-top:36px; }
.about-kpi { flex:1; padding-right:24px; border-right:1px solid var(--c-line); margin-right:24px; min-width: 25%; }
.about-kpi:last-child { border:none; margin:0; padding-right:0; }
.about-kpi-num { font-family:var(--f-display); font-size:36px; font-weight:200; color:var(--c-ink); line-height:1; display:block; font-style:italic; }
.about-kpi-lbl { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--c-muted); margin-top:6px; display:block; }

/* ═══ GALLERY ════════════════════════════════════════ */
.gallery { padding:100px 0; background:var(--c-bg); }
.gallery-hd { padding:0 6vw; margin-bottom:48px; display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:16px; }
.gallery-h2 { font-family:var(--f-display); font-size:clamp(32px,4.5vw,62px); font-weight:200; line-height:1.05; }
.gallery-h2 em { font-style:italic; color:var(--c-pudra); display:block; }
.gal-grid { padding:0 6vw; display:grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 320px 280px; gap:10px; }
.gal-item { overflow:hidden; position:relative; }
.gal-item:nth-child(1) { grid-row:span 2; }
.gal-item:nth-child(4) { grid-column:span 2; }
.gal-item img { width:100%; height:100%; object-fit:cover; transform:scale(1.07); transition:transform 1.2s var(--ease), filter .8s ease; filter:saturate(.75) brightness(.97); }
.gal-item:hover img { transform:scale(1); filter:saturate(1); }
.gal-item-mask { position:absolute; inset:0; background:rgba(42,34,32,0); transition:background .5s ease; display:flex; align-items:flex-end; padding:24px; }
.gal-item:hover .gal-item-mask { background:rgba(42,34,32,.3); }
.gal-label { font-family:var(--f-display); font-style:italic; font-weight:200; font-size:18px; color:#fff; opacity:0; transform:translateY(10px); transition:all .4s var(--ease); }
.gal-item:hover .gal-label { opacity:1; transform:none; }

/* ═══ SERVICES / FEATURES ═══════════════════════════ */
.services { padding:120px 6vw; display:grid; grid-template-columns:320px 1fr; gap:80px; align-items:start; }
.service-rows { display:flex; flex-direction:column; }
.service-row { display:grid; grid-template-columns:40px 1fr; gap:24px; align-items:start; padding:36px 0; border-bottom:1px solid var(--c-line); position:relative; transition:padding .4s var(--ease); }
.service-row:first-child { border-top:1px solid var(--c-line); }
.service-row::before { content:''; position:absolute; inset:0 -6vw; background:var(--c-warm); opacity:0; transition:opacity .4s ease; z-index:-1; }
.service-row:hover::before { opacity:1; }
.service-row:hover { padding-left:8px; }
.sr-num { font-family:var(--f-display); font-size:11px; font-style:italic; color:var(--c-pudra); opacity:.6; padding-top:6px; }
.sr-title { font-family:var(--f-display); font-size:22px; font-weight:400; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.sr-title i { width:36px; height:36px; border-radius:50%; border:1px solid var(--c-line); display:inline-flex; align-items:center; justify-content:center; font-size:14px; color:var(--c-pudra); transition:all .4s var(--ease); flex-shrink:0; }
.service-row:hover .sr-title i { background:var(--c-ink); border-color:var(--c-ink); color:#fff; }
.sr-desc { font-size:14px; color:var(--c-muted); line-height:1.75; max-width:520px; }

@keyframes revUp { to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════════════════
   MOBİL VE TABLET UYUM (RESPONSIVE) İYİLEŞTİRMELERİ 
   ══════════════════════════════════════════════════════ */

@media(max-width: 1024px) {
  .hdr-nav, .hdr-cta, .hdr-eco { display:none; }
  .hdr-ham { display:flex; }
  .hdr-brand { text-align: left; }
}
@media(max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 78px; }
  .hero-img-col { height: 50svh; order: -1; clip-path: none; }
  .hero-txt-col { padding: 48px 6vw 100px; }
  .hero-stats { position: static; margin-top: 40px; justify-content: flex-start; }
  
  .about { 
    grid-template-columns: 1fr; 
    max-height: unset !important;
  }
  .about-visual { height: 60vw; }
  .about-txt { padding: 60px 6vw; }
  
  .services { grid-template-columns:1fr; padding:80px 6vw; gap:50px; }
}

@media(max-width: 768px) {
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item:nth-child(1) { grid-row: auto; aspect-ratio: 1; }
  .gal-item:nth-child(4) { grid-column: auto; aspect-ratio: 1; }
  .gal-item { aspect-ratio: 1; }
  .gallery-hd, .gal-grid { padding: 0 4vw; }
  
  .reviews { padding:80px 6vw; }
  .reviews-hd { flex-direction:column; align-items:flex-start; }
  .reviews-avg { text-align:left; }
}

@media(max-width: 600px) {
  .hero-h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-sub { font-size: 14px; margin-bottom: 30px; }
  .hero-btns { flex-direction: column; width: 100%; align-items: stretch; gap: 15px; }
  .btn-dark { width: 100%; justify-content: center; }
  .btn-line { width: 100%; justify-content: center; }
  
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }
  
  .section-h2, .gallery-h2, .reviews-h2, .cta-h2 { font-size: clamp(28px, 8vw, 38px); }
  
  
  .hdr-name { font-size: 12px; letter-spacing: 2px; }
}

@media(max-width: 500px) {
  .wa-btn span { display: none; }
  .wa-btn { bottom: 20px; right: 20px; height: 48px; }
  .gal-grid { grid-template-columns: 1fr; gap: 15px; }
  .gal-item { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════════════════════
   MOBİL İÇİN TAM EKRAN (100VH) DÜZENLEMESİ 
   ══════════════════════════════════════════════════════ */
@media(max-width: 900px) {
  .hero { 
    grid-template-columns: 1fr; 
    grid-template-rows: 45svh 55svh; /* Görsel ve metin alanını ekranın yüzdesi olarak bölüyoruz */
    height: 100svh; /* Mobilde de kesin 100svh zorunluluğu */
    padding-top: 0; 
  }
  
  .hero-img-col { 
    height: 100%; 
    order: -1; 
    clip-path: none; 
  }
 
  .hero-txt-col { 
    height: 100%;
    padding: 20px 6vw 40px; /* Ekrana sığması için iç boşlukları (padding) daralttık */
    justify-content: flex-start; /* İçeriği ortalamak yerine üstten başlatıyoruz ki taşmasın */
    overflow-y: auto; /* Eğer ekran çok kısaysa ve metin sığmazsa kaydırılabilsin */
  }
  
  .hero-scroll { display: none; }
  
  .hero-stats { 
    position: static; 
    margin-top: auto; /* İstatistikleri ekranın en altına itiyoruz */
    padding-top: 20px;
    justify-content: flex-start; 
  }
}

@media(max-width: 600px) {
  /* Telefonlar için içerik çok sıkışmasın diye ince ayar */
  .hero {
    grid-template-rows: 40svh 60svh; /* Küçük ekranlarda metne daha çok yer veriyoruz */
  }
  .hero-txt-col {
    padding: 10px 6vw 20px;
  }
  .hero-sub { margin-bottom: 20px; }
  .hero-h1 { margin-bottom: 15px; }
}

/* ═══ HERO GÜNCELLEME (Mobil & Tablet) ════════════════ */
@media(max-width: 900px) {
  .hero { 
    grid-template-columns: 1fr; 
    grid-template-rows: 35svh 65svh; /* Görseli biraz daha küçülttük (35) */
    height: 100svh; 
    padding-top: 0; 
  }
  
  .hero-img-col { height: 100%; }
  
  .hero-txt-col { 
    padding: 25px 8vw; 
    justify-content: center; /* İçeriği tam ortaya toplar */
    gap: 10px; /* Elemanlar arası boşluğu daralttık */
  }

  .hero-h1 { 
    font-size: clamp(28px, 8vw, 38px); 
    margin-bottom: 10px; 
  }

  .hero-sub { 
    font-size: 13px; 
    margin-bottom: 20px; 
    line-height: 1.5;
  }

  .hero-btns { 
    gap: 12px; 
  }

  .btn-dark { padding: 12px 24px; font-size: 9px; } /* Butonlar daha kompakt */
  .btn-line { font-size: 9px; }

  .hero-stats { 
    margin-top: 25px; 
    gap: 15px; 
  }
  .hero-stat-num { font-size: 22px; }
}

/* ═══ ABOUT GÜNCELLEME (Mobil & Tablet) ═══════════════ */
@media(max-width: 900px) {
  .about { 
    grid-template-columns: 1fr; 
    grid-template-rows: 35svh 65svh; /* Görsel alanı daraltıldı */
    height: 100svh; 
  }
  
  .about-visual { height: 100%; }
  
  .about-badge { 
    padding: 12px 18px; 
  }
  .about-badge-num { font-size: 28px; }
  
  .about-txt { 
    padding: 30px 8vw; 
    justify-content: center;
  }

  .section-eyebrow { margin-bottom: 10px; font-size: 8px; }
  
  .section-h2 { 
    font-size: clamp(24px, 7vw, 32px); 
    margin-bottom: 12px; 
  }

  .section-p { 
    font-size: 13px; 
    margin-bottom: 20px; 
    line-height: 1.5; 
  }

  .about-kpis { 
    margin-top: 15px; 
    padding-top: 15px; 
    gap: 10px;
    text-align:center;
  }
  
  .about-kpi { 
    min-width: 30%; 
    margin-right: 0; 
  }
  .about-kpi-num { font-size: 24px; }
}

/* ═══ EKSTRA KÜÇÜK CİHAZLAR (iPhone SE vb.) ═══════════ */
@media(max-width: 380px) {
  .hero-h1, .section-h2 { font-size: 22px; }
  .hero-img-col, .about-visual { height: 30svh; }
  .hero { grid-template-rows: 30svh 70svh; }
  .about { grid-template-rows: 30svh 70svh; }
}