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

:root {
  --bg: #f6f1e9;
  --bg-soft: #ece2d3;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.82);
  --ink: #26211d;
  --muted: #75695f;
  --line: rgba(38, 33, 29, 0.14);
  --accent: #2d2621;
  --accent-soft: #cbb8a4;
  --dark: #2f3237;
  --shadow: 0 24px 60px rgba(36, 28, 20, 0.12);
  --container: 1180px;
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  text-align: center;
}

.narrow-heading {
  max-width: 900px;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section-label.light {
  color: rgba(255,255,255,0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

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

.site-shell {
  min-height: 100vh;
}

.reference-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #faf7f2;
  border-bottom: 1px solid rgba(38, 33, 29, 0.06);
}

.reference-nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.reference-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.reference-logo-name {
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  width: 100%;
  text-align: center;
}

.reference-logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.3rem;
  text-align: center;
}

.reference-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.reference-nav a,
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.reference-nav a.active,
.reference-nav a:hover,
.footer-nav a:hover {
  color: var(--ink);
}

/* ── Hero Marquee ────────────────────────────────── */
.reference-hero {
  position: relative;
  padding: 0;
}

.hero-marquee {
  width: 100%;
  height: 58vh;
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-soft, #f5f1ec);
  cursor: pointer;
}

.hero-marquee-track {
  display: flex;
  gap: 10px;
  height: 100%;
  will-change: transform;
}

.hero-marquee-item {
  flex: 0 0 auto;
  width: 52vh;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.hero-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-marquee-item:hover img {
  transform: scale(1.03);
}

/* ── Hero Lightbox ───────────────────────────────── */
.hero-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  align-items: center;
  justify-content: center;
}

.hero-lightbox.open {
  display: flex;
}

.hero-lb-img-wrap {
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.hero-lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.hero-lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #444;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem;
}

.hero-lb-prev,
.hero-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #444;
  cursor: pointer;
  padding: 1rem 1.5rem;
  line-height: 1;
}

.hero-lb-prev { left: 1rem; }
.hero-lb-next { right: 1rem; }

.portfolio-card img,
.feature-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.35rem;
  border: none;
  background: var(--accent);
  color: #f7f2eb;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reference-intro-band {
  background: var(--bg-soft);
  padding: 5.2rem 0 5rem;
  margin-top: 0;
}

.reference-intro-band p {
  max-width: 780px;
  margin: 1.5rem auto 0;
}

.band-button {
  margin-top: 2rem;
}

.reference-portfolio {
  padding: 5.2rem 0;
  background: #fbf7f2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.portfolio-card {
  text-align: center;
}

.portfolio-card a {
  display: block;
}

.portfolio-card img {
  aspect-ratio: 0.72 / 1;
}

.portfolio-card h3 {
  margin-top: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
}

.reference-feature-split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  min-height: 760px;
}

.feature-copy-panel {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-copy-inner {
  width: min(520px, calc(100% - 4rem));
}

.feature-copy-inner h2 {
  margin-bottom: 0.8rem;
}

.feature-copy-inner h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.feature-copy-inner p + p {
  margin-top: 1rem;
}

.feature-small {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-media-panel {
  min-height: 760px;
  background: #111;
}


.reference-footer {
  background: #faf7f2;
  padding: 2.75rem 0 3rem;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-top {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.footer-bottom {
  padding-top: 1.4rem;
}

.footer-mark {
  font-size: 0.86rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-contact,
.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* ── Footer social links ─────────────────────────── */
.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--ink);
}

/* ── Responsive marquee ──────────────────────────── */
@media (max-width: 768px) {
  .hero-marquee {
    height: 40vh;
    min-height: 240px;
  }

  .hero-marquee-item {
    width: 72vw;
  }
  .slider-prev { left: 1rem; }
  .slider-next { right: 1rem; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Page title band */
.about-title-band {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.about-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.about-kicker.centered {
  text-align: center;
}

.about-headline {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.18;
  max-width: 820px;
}

.break-lg { display: none; }
@media (min-width: 900px) { .break-lg { display: block; } }

/* Bio section */
.about-bio-section {
  padding: 0;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-bio-image {
  overflow: hidden;
  background: #ddd;
}

.about-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-bio-text {
  padding: 5rem 5rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.about-bio-text p {
  color: var(--ink);
  line-height: 1.7;
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.about-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.4rem 0.85rem;
}

/* Section rule */
.section-rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Quote section */
.about-quote-section {
  padding: 5rem 0;
  text-align: center;
}

.about-blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 820px;
  margin: 1.5rem auto 0;
  color: var(--ink);
}

/* Section heading shared */
.about-section-head {
  margin-bottom: 3.5rem;
}

.about-section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  max-width: 680px;
  margin-top: 0.75rem;
}

.about-process-section {
  padding: 5rem 0;
}

.about-process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 5rem;
  align-items: start;
}

.about-process-left h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.25;
  max-width: 460px;
}

.about-process-right {
  max-width: 720px;
}

.about-process-right p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
}

.about-process-right p + p {
  margin-top: 1.1rem;
}

/* CTA */
.about-cta-section {
  padding: 6rem 0;
}

.about-cta-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  max-width: 680px;
  margin-top: 0.75rem;
  line-height: 1.25;
}

.about-cta-sub {
  max-width: 540px;
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.ref-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.22s, color 0.22s;
}

.ref-btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.ref-btn-text {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}

.ref-btn-text:hover {
  color: var(--ink);
}

/* About page responsive */
@media (max-width: 900px) {
  .about-bio-grid {
    grid-template-columns: 1fr;
  }
  .about-bio-image {
    height: 55vw;
    min-height: 320px;
  }
  .about-bio-text {
    padding: 3rem 2rem;
  }
  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Portfolio Card Hover ─────────────────────────── */
.portfolio-card {
  cursor: pointer;
}

.portfolio-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-card-img-wrap img {
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img-wrap img {
  transform: scale(1.04);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 33, 29, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay span {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0.6rem 1.4rem;
}

/* ── Project Modal ────────────────────────────────── */
.project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-modal.open {
  display: block;
}

.project-modal.visible {
  opacity: 1;
}

.project-modal-viewport {
  position: absolute;
  inset: 4rem 5rem;
  overflow: hidden;
}

.project-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.project-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px) {
  .project-modal-viewport {
    inset: 3.5rem 1rem;
  }
}

.project-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.project-modal-close:hover {
  background: rgba(255,255,255,0.25);
}

.project-gallery-prev,
.project-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 1rem 1.3rem;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.project-gallery-prev { left: 1.5rem; }
.project-gallery-next { right: 1.5rem; }

.project-gallery-prev:hover,
.project-gallery-next:hover {
  background: rgba(255,255,255,0.25);
}

.project-gallery-prev:disabled,
.project-gallery-next:disabled {
  opacity: 0.25;
  cursor: default;
}

.project-gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 10;
}

.project-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.project-gallery-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.project-modal-counter {
  position: absolute;
  bottom: 2rem;
  right: 1.8rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  z-index: 10;
}

/* Existing secondary pages */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 240, 232, 0.72);
  border-bottom: 1px solid rgba(33, 28, 23, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
}

.logo {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-weight: 600;
}

.button {
  background: var(--ink);
  color: #fbf7f1;
  padding: 0.95rem 1.35rem;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
  color: var(--ink);
  padding: 0.92rem 1.3rem;
}

.hero {
  padding: 4rem 0 2.2rem;
}

.hero-grid,
.about-grid,
.contact-grid,
.booking-grid,
.columns,
.project-feature {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy,
.hero-visual,
.card,
.quote,
.detail-panel,
.contact-card,
.booking-card,
.project-image,
.process-card,
.gallery-item,
.project-mini,
.project-panel,
.cta-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
  border-radius: 0;
}

.hero-copy,
.detail-panel,
.contact-card,
.booking-card,
.card,
.quote,
.project-panel,
.cta-panel,
.process-card {
  padding: 2rem;
}

.hero-visual,
.project-image,
.gallery-item,
.project-mini {
  overflow: hidden;
}

.hero-visual img,
.project-image img,
.gallery-item img,
.project-mini img {
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-meta,
.project-grid,
.card-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meta-card,
.point,
.service-item,
.spec-item {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: rgba(33, 28, 23, 0.08);
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page-header {
  padding: 5.5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.contact-page-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-top: 1rem;
  line-height: 1.12;
  max-width: 820px;
}

.contact-page-sub {
  max-width: 600px;
  margin-top: 1.5rem;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--muted);
}

.contact-body-section {
  padding: 5rem 0 6rem;
}

.contact-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

/* Left column */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-details-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-points-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact-point-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.contact-point-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.1rem;
}

.contact-point-value {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}

.contact-email-link {
  text-decoration: none;
  transition: opacity 0.18s;
}

.contact-email-link:hover {
  opacity: 0.6;
}

/* Right column — form */
.contact-right {
  position: sticky;
  top: 108px;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(117, 105, 95, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2375695f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  background: var(--accent);
  color: #f7f2eb;
  border: none;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-submit-btn:hover {
  opacity: 0.82;
}

.form-note {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success {
  display: none;
  padding: 1rem 1.2rem;
  background: rgba(38, 33, 29, 0.06);
  border-left: 2px solid var(--ink);
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
}

.form-success.visible {
  display: block;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */

.booking-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.booking-hero-image {
  overflow: hidden;
  background: var(--bg-soft);
}

.booking-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.booking-hero-image:hover img {
  transform: scale(1.03);
}

.booking-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 5rem 4.5rem 4.5rem;
  background: var(--bg-soft);
}

.booking-hero-headline {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.booking-hero-sub {
  margin-top: 1.5rem;
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 440px;
}

.booking-brief-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}

.booking-brief-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 6rem;
  align-items: start;
}

.booking-brief-intro {
  padding-top: 0.25rem;
}

.booking-brief-intro p {
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--ink);
}

.booking-brief-points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.booking-brief-point {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.booking-point-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.1rem;
}

.booking-brief-point p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
}

.booking-email-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.18s;
}

.booking-email-link:hover {
  opacity: 0.6;
}

.booking-calendar-section {
  padding: 4rem 0 6rem;
}

.booking-calendar-section .section-label {
  display: block;
  margin-bottom: 2rem;
}

.booking-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
}

@media (max-width: 960px) {
  .booking-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .booking-hero-image {
    height: 55vw;
    min-height: 300px;
  }

  .booking-hero-copy {
    padding: 3.5rem 2rem;
  }

  .booking-brief-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .booking-brief-point {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .booking-hero-copy {
    padding: 3rem 1.5rem;
  }
}

/* Contact page responsive */
@media (max-width: 960px) {
  .contact-body-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-right {
    position: static;
  }
}

@media (max-width: 580px) {
  .form-row-half {
    grid-template-columns: 1fr;
  }

  .contact-page-header {
    padding: 3.5rem 0 3rem;
  }

  .contact-body-section {
    padding: 3rem 0 4rem;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.pf-title-band {
  padding: 5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.pf-title-band .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.pf-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}

/* Filter tabs */
.pf-filter-section {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px;
  background: var(--bg);
  z-index: 20;
}

.pf-filters {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-wrap: wrap;
}

.pf-filter {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s;
  position: relative;
}

.pf-filter::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.22s ease;
}

.pf-filter:hover {
  color: var(--ink);
}

.pf-filter.active {
  color: var(--ink);
}

.pf-filter.active::after {
  width: 100%;
}

/* Grid */
.pf-grid-section {
  padding: 3rem 0 6rem;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
}

/* Project card */
.pf-card {
  cursor: pointer;
}

.pf-card.pf-hidden {
  display: none;
}

.pf-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  margin-bottom: 0.9rem;
}

.pf-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.pf-card:hover .pf-card-img-wrap img {
  transform: scale(1.06);
}

.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 33, 29, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pf-card:hover .pf-card-overlay {
  opacity: 1;
}

.pf-card-overlay span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}

.pf-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0;
}

/* Empty state */
.pf-empty {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pf-filters {
    gap: 1.6rem;
  }

  .pf-filter-section {
    top: 60px;
  }
}

@media (max-width: 400px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}
