@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

:root {
  --bg: #f7f0e9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --ink: #1f1611;
  --muted: #746357;
  --brand: #9f5428;
  --brand-dark: #6b3718;
  --accent: #e2be93;
  --gold: #c8a56f;
  --line: rgba(160, 114, 76, 0.2);
  --shadow: 0 20px 58px rgba(43, 21, 10, 0.12);
  --shadow-hover: 0 34px 88px rgba(43, 21, 10, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(244, 211, 170, 0.52), transparent 44%),
    radial-gradient(circle at 94% 6%, rgba(214, 182, 146, 0.45), transparent 32%),
    radial-gradient(circle at 80% 100%, rgba(135, 77, 41, 0.16), transparent 40%),
    linear-gradient(160deg, #fffaf3 0%, #f8efe4 55%, #f4e9dc 100%);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(107, 55, 24, 0.03));
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 245, 0.76);
  backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(153, 92, 51, 0.16);
  box-shadow: 0 10px 28px rgba(63, 34, 15, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
}

.brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  letter-spacing: 0.4px;
  font-style: italic;
}

.brand span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.1), transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-links a:hover {
  color: var(--brand-dark);
  transform: translateY(-3px);
  border-color: rgba(159, 84, 40, 0.2);
  background: rgba(255, 255, 255, 0.42);
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover::after {
  opacity: 1;
}

.nav-links a.active {
  background: linear-gradient(135deg, #f8e8d2 0%, #e9d3b2 100%);
  color: var(--brand-dark);
  font-weight: 600;
  border-color: rgba(144, 82, 43, 0.24);
  box-shadow: 0 10px 24px rgba(109, 56, 27, 0.22);
}

.nav-links a.active::before {
  left: 0;
  background: var(--gold);
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 234, 218, 0.72));
  border: 1px solid rgba(201, 169, 110, 0.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 4vw, 3rem);
  animation: rise 0.7s cubic-bezier(.22,.68,0,1.2) both;
  position: relative;
  isolation: isolate;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.35), transparent 40%, rgba(200, 165, 111, 0.14));
  pointer-events: none;
  z-index: -1;
}

.hero-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1.07;
  margin: 0 0 1.1rem;
  letter-spacing: -0.5px;
}

.hero-card p {
  color: var(--muted);
  margin: 0 0 1.7rem;
  max-width: 52ch;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-card p + p {
  margin-top: -0.7rem;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(143, 70, 28, 0.2);
  box-shadow: var(--shadow);
  animation: rise 0.85s ease both;
  position: relative;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.55rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(245, 226, 204, 0.62));
  border: 1px solid rgba(143, 70, 28, 0.18);
  box-shadow: var(--shadow);
  animation: rise 0.85s ease both;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  gap: 0.5rem;
  min-height: 440px;
  position: relative;
  z-index: 0;
}

.hero-shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(143, 70, 28, 0.18);
  position: relative;
}

.hero-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 9, 4, 0.02), rgba(19, 9, 4, 0.3));
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual:hover .hero-shot img {
  transform: scale(1.06);
}

.hero-shot-main {
  grid-row: 1 / span 3;
}

.hero-shot-top {
  grid-row: 1;
}

.hero-shot-mid {
  grid-row: 2;
}

.hero-shot-bottom {
  grid-row: 3;
}

.hero-glow {
  position: absolute;
  right: -4%;
  bottom: -5%;
  width: 56%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 165, 111, 0.34), rgba(200, 165, 111, 0));
  filter: blur(8px);
  z-index: -1;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 10, 6, 0.05), transparent 38%, rgba(17, 10, 6, 0.24));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.hero-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(26, 16, 10, 0.52);
  border: 1px solid rgba(255, 236, 214, 0.2);
  backdrop-filter: blur(12px);
  color: #f8efe1;
  box-shadow: 0 14px 30px rgba(12, 7, 4, 0.22);
}

.hero-note-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 239, 225, 0.72);
}

.hero-note strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: -0.5rem 0 1.3rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(176, 90, 36, 0.16);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-meta span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
  box-shadow: 0 0 0 4px rgba(200, 165, 111, 0.14);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-stat-grid div {
  padding: 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(176, 90, 36, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-stat-grid strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.hero-stat-grid span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label-light {
  color: rgba(248, 239, 225, 0.88);
}

.section-label-light::before {
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.pill {
  background: rgba(255, 255, 255, 0.56);
  color: var(--brand-dark);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(176, 90, 36, 0.24);
  letter-spacing: 0.4px;
}

.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.6rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  font-family: 'Manrope', sans-serif;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(112, 48, 14, 0.22);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, #a45b2d 0%, #7b401f 46%, #5b2f17 100%);
  box-shadow: 0 8px 24px rgba(112, 48, 14, 0.32);
}

.btn-secondary {
  background: rgba(232, 207, 178, 0.38);
  color: var(--brand-dark);
  border: 1px solid rgba(176, 90, 36, 0.28);
  backdrop-filter: blur(6px);
}

main section {
  padding: 1.5rem 0 3rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.3px;
}

.section-head p {
  color: var(--muted);
  max-width: 65ch;
  font-weight: 300;
  margin-top: 0.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, var(--surface-strong), var(--surface));
  box-shadow: 0 10px 28px rgba(50, 25, 10, 0.1);
  padding: 1.6rem 1.5rem;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(200, 165, 111, 0.12);
  color: var(--brand-dark);
  border: 1px solid rgba(176, 90, 36, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.signature-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 236, 224, 0.72));
  box-shadow: var(--shadow);
}

.signature-panel h2 {
  margin: 0 0 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.signature-panel p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
}

.signature-panel-dark {
  background: linear-gradient(135deg, #24150d 0%, #3b2417 45%, #1b100b 100%);
  border-color: rgba(200, 165, 111, 0.22);
  color: #f8efe1;
}

.signature-panel-dark p {
  color: rgba(248, 239, 225, 0.8);
}

.signature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.signature-list li {
  padding: 0.9rem 0 0.9rem 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(160, 114, 76, 0.18);
  color: var(--muted);
}

.signature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.signature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
}

.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.97rem;
}

.feature-strip {
  background: linear-gradient(135deg, #26170f 0%, #3a2317 42%, #20120c 100%);
  color: #f5e6d3;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(30, 12, 4, 0.22);
}

.feature-strip > div {
  padding: 0.5rem 0;
  border-right: 1px solid rgba(201, 169, 110, 0.2);
}

.feature-strip > div:last-child {
  border-right: none;
}

.feature-strip strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-style: italic;
}

.feature-strip span {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
}

.page-hero {
  padding: 3.6rem 0 2rem;
}

.page-hero-box {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(248, 239, 230, 0.74));
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 14px 34px rgba(50, 25, 10, 0.09);
}

.page-hero-box h1 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 0.7rem;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.page-hero-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.page-hero-box p + p {
  margin-top: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(176, 90, 36, 0.2);
  box-shadow: 0 14px 36px rgba(40, 16, 4, 0.16);
  min-height: 200px;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.24) 50%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.95rem 1rem 0.9rem;
  background: linear-gradient(180deg, rgba(16, 10, 6, 0.05), rgba(16, 10, 6, 0.85));
  color: #f8efe1;
}

.gallery-item figcaption h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.gallery-item figcaption p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(248, 239, 225, 0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  transform: translateX(120%);
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-8 {
  grid-column: span 8;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #d8c2aa;
}

.hours {
  display: grid;
  gap: 0.35rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px dashed #d8c2aa;
  padding: 0.42rem 0;
}

.callout {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8ebdc, #f1dfcc);
  color: #4d311f;
  font-weight: 500;
  font-size: 0.92rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 22px rgba(79, 43, 20, 0.12);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  background: linear-gradient(120deg, #140b07 0%, #24140d 56%, #120906 100%);
}

.footer-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(245, 230, 210, 0.72);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer-wrap .brand-footer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .info-grid,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 0.3rem;
  }

  .hero-mosaic {
    min-height: 420px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .span-8,
  .span-6,
  .span-4 {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-note {
    position: static;
    margin: 0.9rem;
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(90px, 1fr));
    min-height: 0;
  }

  .hero-shot-main {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  .hero-shot-top {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-shot-mid {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-shot-bottom {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .hero-glow {
    width: 70%;
    height: 40%;
  }

  .hero-meta {
    margin-top: -0.2rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }
}

/* ── WhatsApp floating action button ─────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
  z-index: 200;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.52);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ── Hamburger nav toggle ─────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(176, 90, 36, 0.22);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.45rem 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.5rem 0 0.8rem;
    border-top: 1px solid var(--line);
    justify-content: initial;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    padding: 0.65rem 1rem;
  }
}
