:root {
  --ink: #211b16;
  --muted: #756b62;
  --paper: #fbf8f1;
  --cream: #efe7d8;
  --porcelain: #fffdf8;
  --clay: #8f3c2d;
  --wine: #55251f;
  --moss: #536048;
  --gold: #c6a15a;
  --charcoal: #14110f;
  --line: rgba(33, 27, 22, 0.14);
  --shadow: 0 28px 80px rgba(42, 29, 18, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.footer-bottom {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 0 22px rgba(255, 196, 80, 0.08);
    transition: transform 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    position: relative;
}

.footer-social-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -10px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 204, 102, 0.34);
    filter: blur(10px);
    opacity: 0;
    transform: translateY(4px) scaleX(0.82);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 214, 118, 0.34);
    box-shadow: 0 0 26px rgba(255, 205, 84, 0.16), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.footer-social-link:hover::after {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #9aa6b8;
    margin-top: 0;
    letter-spacing: 0.3px;
}

.footer-copy .highlight {
    color: #f5c542;
    font-weight: 700;
    transition: color 0.28s ease, text-shadow 0.28s ease;
}

.footer-copy .highlight:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255,255,255,0.45);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading > :not(.loader-screen) {
  visibility: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 50% 38%, rgba(198, 161, 90, 0.2), transparent 28%),
    linear-gradient(145deg, #14110f, #05070f 68%);
  color: #fff;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.loader-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emblem {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(198, 161, 90, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(143, 60, 45, 0.96), rgba(85, 37, 31, 0.96));
  color: #fff;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.03), 0 28px 80px rgba(0, 0, 0, 0.36);
  animation: loaderPulse 1600ms ease-in-out infinite;
}

.loader-screen p {
  margin: 4px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.loader-screen span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-line {
  width: min(260px, 68vw);
  height: 2px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line i {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1200ms ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 54px rgba(23, 18, 13, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 16px 44px rgba(23, 18, 13, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: linear-gradient(135deg, var(--wine), var(--clay));
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #40352e;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(143, 60, 45, 0.1);
  outline: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 13, 10, 0.88), rgba(18, 13, 10, 0.46) 48%, rgba(18, 13, 10, 0.14)),
    linear-gradient(180deg, rgba(18, 13, 10, 0.28), rgba(18, 13, 10, 0.74));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(780px, calc(100% - 36px));
  min-height: 92vh;
  margin-left: clamp(18px, 7vw, 90px);
  padding-top: 94px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary {
  background: linear-gradient(135deg, var(--clay), var(--wine));
  color: #fff;
  box-shadow: 0 16px 38px rgba(85, 37, 31, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 54px;
  z-index: 3;
  width: min(340px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(20, 17, 15, 0.72);
  color: #fff;
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 10px 0;
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.1;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.intro-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, calc(100% - 36px));
  margin: -52px auto 0;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 90, 0.32);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.intro-strip article {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.intro-strip article:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.intro-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 92px auto;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.editorial-section h2,
.section-heading h2,
.concierge-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
}

.editorial-section > p,
.section-heading > p,
.section-heading div + p,
.concierge-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading > p,
.section-heading div + p {
  max-width: 390px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: 0 16px 42px rgba(42, 29, 18, 0.12);
}

.collection-card.large {
  min-height: 500px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.78));
  content: "";
}

.collection-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.collection-card small {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.14em;
}

.collection-card span {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.collection-card p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.collection-card:hover img {
  transform: scale(1.05);
}

.product-section {
  margin-top: 66px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
  font-weight: 900;
}

.filters button.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(33, 27, 22, 0.12);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 14px 38px rgba(42, 29, 18, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 68px rgba(42, 29, 18, 0.16);
}

.product-card.is-hidden {
  display: none;
}

.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(20, 17, 15, 0.66);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-card div {
  padding: 20px 20px 12px;
}

.product-card span,
.product-modal span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 4px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.product-card strong {
  color: var(--wine);
  font-size: 20px;
}

.product-card button {
  min-height: 48px;
  margin: 0 20px 20px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  font-weight: 900;
}

.concierge-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  margin: 104px 0;
  padding: clamp(24px, 5vw, 64px);
  background: var(--charcoal);
  color: #fff;
}

.concierge-image {
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
}

.concierge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concierge-copy {
  display: grid;
  align-content: center;
}

.concierge-copy > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 610px;
  margin-top: 18px;
}

.concierge-copy .button {
  width: fit-content;
  margin-top: 22px;
}

.measure-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.measure-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.measure-list span,
.contact-grid p {
  margin: 0;
  color: var(--muted);
}

.concierge-section .measure-list span {
  color: rgba(255, 255, 255, 0.68);
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 96px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-band article {
  min-height: 230px;
  padding: 28px;
  background: var(--porcelain);
}
/* Sabit Sosyal Medya Butonları Alanı */
.fixed-social-bar {
  position: fixed;
  right: 20px; /* Ekranın sağından ne kadar içeride duracağı */
  bottom: 30px; /* Ekranın altından ne kadar yukarıda duracağı */
  display: flex;
  flex-direction: column; /* Üst üste durmaları için */
  gap: 12px; /* Butonların arasındaki boşluk */
  z-index: 9999; /* Sayfadaki diğer elementlerin üstünde görünmesi için */
}

/* Genel Buton Tasarımı */
.fixed-btn {
  width: 60px;
  height: 60px;
  border-radius: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.fixed-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.fixed-btn.whatsapp {
  background-color: #25D366;
}

.fixed-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fixed-btn.tiktok {
  background: #050505;
}
/* Butonlara Yanıp Sönme (Pulsing) Efektinin Tanımlanması */
.fixed-btn {
  /* ... önceki kodların kalabilir, sadece bu satırı ekliyoruz veya en alta yazıyoruz ... */
  animation: pulseEffect 2s infinite ease-in-out;
}

/* Fare ile üzerine gelindiğinde (Hover) animasyonu durdurmak istersen: */
.fixed-btn:hover {
  animation-play-state: paused;
}

/* Yanıp Sönme Animasyonunun Detayı */
@keyframes pulseEffect {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.08); /* Hafifçe büyür */
    /* WhatsApp ve Instagram renklerine göre dışa doğru hafif bir parlama (glow) efekti ekler */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); 
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
}

/* Instagram butonunun parlamasını kendi rengine özel yapmak istersen (opsiyonel): */
.fixed-btn.instagram {
  animation: instagramPulseEffect 2s infinite ease-in-out;
}

.fixed-btn.tiktok {
  animation: tiktokPulseEffect 2s infinite ease-in-out;
}

@keyframes instagramPulseEffect {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(220, 39, 67, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
}

@keyframes tiktokPulseEffect {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(37, 244, 238, 0.55); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
}
/* Mobil Cihazlar İçin Boyut Ayarı (Ekran küçükse biraz küçültüyoruz) */
@media (max-width: 768px) {
  .fixed-social-bar {
    right: 15px;
    bottom: 20px;
    gap: 10px;
  }
  
  .fixed-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

.service-band strong {
  display: block;
  margin: 18px 0 10px;
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.08;
}

.service-band p {
  margin: 0;
  color: var(--muted);
}



.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-grid article {
  min-height: 158px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--charcoal), var(--wine));
  color: #fff;
}

.contact-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid a,
.contact-grid p {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.map-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 92px;
}

.map-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.map-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.map-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--wine);
  font-weight: 900;
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 48px clamp(13px, 4vw, 52px) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #070a14;
  color: #c9d9ff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr 1fr;
  gap: clamp(26px, 4vw, 58px);
  width: min(1220px, 100%);
  margin: 0 auto;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  max-width: 310px;
}

.footer-logo {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(7, 10, 20, 0.08);
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.42;
}

.footer-brand p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: #c9d9ff;
  font-size: 16px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.footer-column a {
  color: #c9d9ff;
  font-size: 16px;
}

.footer-column a:hover,
.social-links a:hover {
  color: #f4ca3a;
}

.footer-bottom {
  display: grid;
  place-items: center;
  gap: 20px;
  padding-top: 24px;
  text-align: center;
}



.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom p {
  margin: 0;
  color: #c9d9ff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.footer-bottom a {
  color: #f4ca3a;
  font-weight: 900;
}

.product-modal {
  width: min(900px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.product-modal::backdrop {
  background: rgba(18, 15, 13, 0.66);
  backdrop-filter: blur(5px);
}

.product-modal[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-modal img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.product-modal > div {
  padding: 40px;
}

.product-modal h2 {
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1.04;
}

.product-modal p {
  color: var(--muted);
}

.product-modal dl {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.product-modal dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-modal dt {
  color: var(--muted);
  font-weight: 900;
}

.product-modal dd {
  margin: 0;
  font-weight: 950;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  font-weight: 950;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--porcelain);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .hero-panel {
    display: none;
  }

  .floating-contact {
    right: 14px;
    gap: 12px;
    padding: 12px 10px;
  }

  .floating-contact a {
    width: 54px;
    height: 54px;
  }

  .floating-contact svg {
    width: 27px;
    height: 27px;
  }

  .intro-strip,
  .product-grid,
  .contact-grid,
  .service-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-section,
  .collection-grid,
  .concierge-section,
  .map-section,
  .product-modal[open] {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .collection-card.large {
    min-height: 320px;
  }

  .concierge-image {
    min-height: 360px;
  }
}

@media (max-width: 660px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .hero,
  .hero-content {
    min-height: 780px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0.24) 42%, rgba(18, 13, 10, 0.82));
  }

  .hero-content {
    align-content: end;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .intro-strip,
  .product-grid,
  .contact-grid,
  .service-band {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    margin-top: -38px;
  }

  .intro-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    margin: 66px auto;
  }

  .map-section {
    margin-bottom: 66px;
  }

  .map-section iframe {
    min-height: 320px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p,
  .section-heading div + p {
    margin-top: 12px;
  }

  .concierge-section {
    margin: 74px 0;
    padding: 18px;
  }

  .measure-list article,
  .site-footer {
    display: grid;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-modal img {
    min-height: 280px;
  }

  .product-modal > div {
    padding: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: none;
  }

  .social-links a {
    width: 48px;
    height: 48px;
  }
}
