/*
Theme Name: Abba Hotel EN
Theme URI: https://abbahotel.co.il
Author: Abba Hotel TLV-Yafo
Description: English boutique-hotel theme for Abba Hotel Tel Aviv–Yafo. Standalone (no builder required), cinematic one-page home with rooms, rooftop, breakfast, deals club, location and booking engine integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: Proprietary
Text Domain: abba-hotel-en
*/

/* ============ Tokens ============ */
:root {
  --ink: #251c16;
  --ink-soft: #4d3f34;
  --plaster: #f3ece3;
  --plaster-deep: #e9ddcd;
  --clay: #c08a6e;
  --clay-deep: #a9714f;
  --sea: #3e6b66;
  --sea-deep: #2f524e;
  --line: #d9c9b7;
  --paper: #fbf8f3;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Heebo", -apple-system, "Segoe UI", sans-serif;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--clay-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.8rem); letter-spacing: -.015em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--clay); }
.on-dark .eyebrow { color: var(--clay); }
.on-dark .eyebrow::before { background: var(--clay); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .2s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn-solid { background: var(--clay); border-color: var(--clay); color: #fff; }
.btn-solid:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: #fff; }
.btn-light { border-color: rgba(255,255,255,.85); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-sea { background: var(--sea); border-color: var(--sea); color: #fff; }
.btn-sea:hover { background: var(--sea-deep); border-color: var(--sea-deep); color: #fff; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1360px; }
.site-header.scrolled, .site-header.solid { background: rgba(37, 28, 22, .95); backdrop-filter: blur(10px); box-shadow: 0 6px 30px rgba(0,0,0,.18); }
.site-header.scrolled { padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 52px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand img { height: 42px; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; color: #fff; letter-spacing: .02em; white-space: nowrap; }
.brand-name small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--clay); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.main-nav a { color: rgba(255,255,255,.88); font-size: .85rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a:hover { color: var(--clay); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { color: rgba(255,255,255,.85); font-size: .88rem; letter-spacing: .04em; }
.header-phone:hover { color: var(--clay); }
.btn-book { padding: 12px 26px; font-size: .8rem; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 101; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px auto; transition: transform .3s ease, opacity .3s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed; inset: 0; background: rgba(37,28,22,.97);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .main-nav a { font-size: 1.15rem; }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
}
@media (max-width: 560px) {
  .btn-book { display: none; }
  .brand-name { font-size: 1.05rem; }
}

/* ============ Hero ============ */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: 53% 70%;
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,16,11,.82) 0%, rgba(24,16,11,.25) 45%, rgba(192,138,110,.18) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(60px, 10vh, 120px); padding-top: 140px; }
.hero h1 { color: #fff; max-width: 13ch; }
.hero h1 em { font-style: italic; font-weight: 340; color: #ecc9b2; }
.hero-sub { max-width: 46ch; font-size: clamp(1.02rem, 1.5vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,.92); margin: 22px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; right: var(--pad); bottom: 36px; z-index: 2;
  writing-mode: vertical-rl; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after { content: ""; width: 1px; height: 54px; background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); animation: drip 2.2s ease-in-out infinite; }
@keyframes drip { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .4; } }
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* ============ Signature: Jaffa arch frames ============ */
.arch { border-radius: 999px 999px 26px 26px; overflow: hidden; position: relative; }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-tall { aspect-ratio: 3 / 4.1; }

/* ============ Abba's voice pull-quote ============ */
.abba-says {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
  position: relative;
  padding-left: 34px;
  margin: 0 0 14px;
}
.abba-says::before { content: ""; position: absolute; left: 0; top: .2em; bottom: .2em; width: 3px; border-radius: 3px; background: var(--clay); }
.abba-says-tag { font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clay-deep); padding-left: 34px; }
.on-dark .abba-says { color: #fff; }
.on-dark .abba-says-tag { color: var(--clay); }

/* ============ Story ============ */
.story { background: var(--plaster); padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-figure { position: relative; }
.story-figure .arch { box-shadow: 24px 30px 0 -6px var(--plaster-deep); }
.story-figure .story-badge {
  position: absolute; right: -18px; bottom: 40px;
  background: var(--sea); color: #fff;
  border-radius: 50%;
  width: 132px; height: 132px;
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.25;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(47,82,78,.35);
}
.story-copy p { color: var(--ink-soft); max-width: 56ch; }
.story-points { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 12px; }
.story-points li { display: flex; gap: 14px; align-items: baseline; color: var(--ink-soft); }
.story-points li strong { color: var(--ink); font-weight: 500; }
.story-points li::before { content: "—"; color: var(--clay); flex: none; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-figure { max-width: 420px; }
}

/* ============ Rooms ============ */
.rooms { padding: clamp(80px, 11vw, 150px) 0; }
.rooms-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); }
.rooms-head p { max-width: 44ch; color: var(--ink-soft); margin: 0; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.room-card { display: flex; flex-direction: column; }
.room-card .arch { aspect-ratio: 3 / 3.7; transition: transform .45s ease; }
.room-card .arch img { transition: transform .8s ease; }
.room-card:hover .arch img { transform: scale(1.06); }
.room-body { padding: 22px 6px 0; }
.room-body h3 { margin-bottom: 6px; }
.room-meta { font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 10px; }
.room-body p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 16px; }
.room-link { font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--clay); padding-bottom: 3px; }
.room-link:hover { color: var(--clay-deep); }
@media (max-width: 900px) {
  .rooms-head { flex-direction: column; align-items: flex-start; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============ Rooftop ============ */
.rooftop {
  min-height: 92vh;
  display: grid; align-items: center;
  color: #fff;
  background-size: cover; background-position: 25% 60%;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 1024px) { .rooftop { background-attachment: scroll; } }
.rooftop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(24,16,11,.78) 20%, rgba(24,16,11,.28) 65%, rgba(62,107,102,.25) 100%); }
.rooftop .wrap { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 110px; }
.rooftop h2 { color: #fff; max-width: 15ch; }
.rooftop p { max-width: 52ch; color: rgba(255,255,255,.9); }
.rooftop-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 36px; padding: 0; list-style: none; }
.rooftop-tags li {
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  padding: 8px 20px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}

/* ============ Breakfast ============ */
.breakfast { background: var(--paper); padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; }
.breakfast-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.breakfast-copy p { color: var(--ink-soft); max-width: 54ch; }
.breakfast-fact { display: flex; gap: 34px; margin: 30px 0 36px; }
.breakfast-fact div { border-top: 2px solid var(--clay); padding-top: 12px; }
.breakfast-fact strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ink); }
.breakfast-fact span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.breakfast-figure { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.breakfast-figure .arch:nth-child(2) { margin-top: 54px; }
@media (max-width: 900px) { .breakfast-grid { grid-template-columns: 1fr; } }

/* ============ Deals club ============ */
.club { background: var(--sea); color: #fff; padding: clamp(70px, 9vw, 120px) 0; text-align: center; position: relative; overflow: hidden; }
.club::before, .club::after {
  content: ""; position: absolute; border-radius: 999px 999px 0 0; background: rgba(255,255,255,.05);
  width: 320px; height: 460px; bottom: -140px;
}
.club::before { left: -110px; transform: rotate(8deg); }
.club::after { right: -110px; transform: rotate(-8deg); }
.club .wrap { position: relative; z-index: 2; max-width: 780px; }
.club h2 { color: #fff; }
.club p { color: rgba(255,255,255,.88); margin: 0 auto 34px; max-width: 56ch; }
.club .eyebrow { color: #d8ebe6; justify-content: center; }
.club .eyebrow::before { background: #d8ebe6; }

/* ============ Location ============ */
.location { padding: clamp(80px, 11vw, 150px) 0; background: var(--plaster); }
.location-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.location-copy p { color: var(--ink-soft); max-width: 48ch; }
.location-list { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 14px; }
.location-list li { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 12px; font-size: .95rem; }
.location-list li span:last-child { color: var(--clay-deep); font-weight: 500; white-space: nowrap; }
.location-map { border-radius: 26px 26px 999px 999px; overflow: hidden; aspect-ratio: 4 / 4.4; box-shadow: 0 24px 60px rgba(37,28,22,.16); }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: sepia(.14) saturate(.9); }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } .location-map { border-radius: 26px; aspect-ratio: 4/3; } }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: clamp(70px, 9vw, 110px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); margin-bottom: 60px; }
.footer-brand img { height: 62px; margin-bottom: 18px; }
.footer-brand p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 26ch; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .82rem; color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ Floating actions ============ */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.mobile-book {
  position: fixed; inset: auto 0 0 0; z-index: 79;
  display: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(37,28,22,.96); backdrop-filter: blur(8px);
}
.mobile-book .btn { width: 100%; justify-content: center; }
@media (max-width: 560px) {
  .mobile-book { display: block; }
  .whatsapp-float { bottom: 86px; }
}

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll::after { animation: none; }
}

/* ============ Inner pages ============ */
.page-plain { padding: 160px 0 100px; background: var(--paper); min-height: 70vh; }
.page-plain .entry-content { max-width: 760px; }
.page-plain .entry-content a { text-decoration: underline; }

/* ============ Booking engine (slim parallax band + full-bleed native engine) ============ */
.booking { scroll-margin-top: 64px; background: #fff; overflow: visible !important; height: auto !important; }
.booking-banner {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0 clamp(50px, 6vw, 80px);
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed; /* parallax */
}
@media (max-width: 1024px) { .booking-banner { background-attachment: scroll; } }
.booking-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,16,11,.78), rgba(24,16,11,.55));
}
.booking-head { position: relative; z-index: 2; max-width: 1200px; }
.booking-head h2 { color: #fff; margin-bottom: 10px; }
.booking-head p:not(.eyebrow) { color: rgba(255,255,255,.88); max-width: 60ch; margin: 0; }
/* Engine sits edge-to-edge, native — no card chrome */
.booking-embed { width: 100%; background: #fff; }
.booking-embed, .booking-embed * { max-height: none !important; }
.booking-embed iframe { width: 100% !important; }

/* ============ Gallery page ============ */
.gallery-page { padding: 150px 0 clamp(70px, 9vw, 120px); background: var(--paper); }
.gallery-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); }
.gallery-head h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.gallery-head .entry-content { color: var(--ink-soft); }
.gallery-grid { columns: 3; column-gap: 20px; }
.gallery-item {
  display: block; width: 100%; margin: 0 0 20px;
  padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: 18px; overflow: hidden;
  break-inside: avoid;
}
.gallery-item:nth-child(6n+1) { border-radius: 999px 999px 18px 18px; } /* Jaffa arch accents */
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .7s ease, filter .5s ease; }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
@media (max-width: 1000px) { .gallery-grid { columns: 2; } }
@media (max-width: 580px) { .gallery-grid { columns: 1; } }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(24,16,11,.94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: none; border: 0; color: rgba(255,255,255,.85);
  cursor: pointer; font-family: var(--font-display); line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.lightbox-close { top: 18px; right: 26px; font-size: 3rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 4rem; padding: 20px; }
.lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
.lightbox-close:hover, .lightbox-nav:hover { color: var(--clay); }
@media (max-width: 700px) { .lightbox-nav { font-size: 3rem; padding: 10px; } }

/* ============ Font guard (overrides leftover demo-theme plugin CSS) ============ */
body, body p, body li, body a, body button, .btn, .main-nav a, .eyebrow,
.room-meta, .room-link, .header-phone, .site-footer, input, select, textarea {
  font-family: var(--font-body) !important;
}
body h1, body h2, body h3, .brand-name, .abba-says, .footer-brand p,
.breakfast-fact strong, .story-badge, .lightbox-close, .lightbox-nav {
  font-family: var(--font-display) !important;
}
h1, h2, h3 { text-transform: none; letter-spacing: -.01em; }

/* Gallery sub line */
.gallery-sub { color: var(--ink-soft); max-width: 52ch; }

/* ============ About page ============ */
.about-page { padding: 150px 0 clamp(70px, 9vw, 120px); background: var(--paper); }
.about-head { max-width: 800px; margin-bottom: clamp(36px, 5vw, 64px); }
.about-head h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.about-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 90px); align-items: center; margin-bottom: clamp(50px, 7vw, 90px); }
.about-copy p { color: var(--ink-soft); max-width: 58ch; }
.about-figure { max-width: 460px; justify-self: end; }
.about-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(26px, 4vw, 44px) 0; margin-bottom: clamp(50px, 7vw, 90px); text-align: center; }
.about-strip strong { display: block; font-family: var(--font-display) !important; font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--clay-deep); }
.about-strip span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); }
.about-gallery .arch { aspect-ratio: 3/3.6; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { justify-self: start; }
  .about-strip { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .about-gallery { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============ Contact page ============ */
.contact-page { padding: 150px 0 clamp(70px, 9vw, 120px); background: var(--paper); }
.contact-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.contact-head h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.contact-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-form label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 22px 0 8px; }
.contact-form label span { font-weight: 400; text-transform: none; letter-spacing: 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink);
  font-family: var(--font-body) !important; font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(192,138,110,.18); }
.contact-form button { margin-top: 28px; }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.form-notice { padding: 16px 20px; border-radius: 12px; margin-bottom: 26px; font-size: .95rem; }
.form-ok { background: #e8f2ec; color: #23573b; border: 1px solid #bcd9c7; }
.form-err { background: #f9ebe8; color: #7c3226; border: 1px solid #e4c3ba; }
.contact-info-col h3 { margin-bottom: 20px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 18px; }
.contact-list li { border-bottom: 1px solid var(--line); padding-bottom: 14px; color: var(--ink-soft); }
.contact-list li span { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 4px; }
.contact-map { margin-top: 34px; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 18px 44px rgba(37,28,22,.14); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: sepia(.14) saturate(.9); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Contact form → WhatsApp */
.contact-form-note { color: var(--ink-soft); margin: 0 0 6px; max-width: 46ch; }
.contact-form-alt { font-size: .88rem; color: var(--ink-soft); margin-top: 18px; }
.contact-form-alt a { text-decoration: underline; }

/* Date range picker (contact form) */
.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input[type="date"] { appearance: none; -webkit-appearance: none; min-height: 50px; }
.contact-form input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .6; }
@media (max-width: 480px) { .date-row { grid-template-columns: 1fr; } }

.contact-form .sub-label { margin: 0 0 6px; font-size: .7rem; }
