/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: "Manrope", sans-serif;
  background: #F1EEE7;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  transition: all 0.5s ease;
  background: transparent;
}
.navbar.scrolled {
  background: #fff9ec;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-logo {
  color: #1a1a1a;
}
.navbar.scrolled .nav-link {
  color: rgba(26, 26, 26, 0.72);
}
.navbar.scrolled .nav-link:hover {
  color: rgba(26, 26, 26, 0.95);
}
.navbar.scrolled .hamburger span {
  background: #1a1a1a;
}
.nav-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-left {
  justify-content: flex-end;
}
.nav-right {
  justify-content: flex-start;
}
.nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 242, 238, 0.85);
  transition: color 0.4s ease;
}
.nav-link:hover {
  color: rgba(245, 242, 238, 1);
}
.nav-link.active {
  color: rgba(245, 242, 238, 1);
}
.nav-logo {
  display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    letter-spacing: 7px;
    color: #ffffff;
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    transition: color 0.4s ease;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(245, 242, 238, 0.9);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(245, 242, 238, 0.7);
  cursor: pointer;
  padding: 8px;
}
.mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-link {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  color: rgba(245, 242, 238, 0.85);
  letter-spacing: 4px;
  transition: color 0.3s ease;
}
.mobile-link:hover { color: rgba(245, 242, 238, 0.95); }

@media (max-width: 1024px) {
  .navbar {
    padding: 24px 32px;
  }
  .nav-container {
    gap: 24px;
  }
  .nav-links {
    gap: 24px;
  }
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0a0a0a;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
}
.slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.7) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 52px);
  color: rgba(242, 240, 235, 0.92);
  letter-spacing: 0.10em;
  line-height: 1.2;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  text-shadow: 0 0 40px rgba(255,255,255,0.08);
  filter: blur(0.2px);
}
.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}
.slide-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(11px, 1.2vw, 16px);
  color: rgba(242, 240, 235, 0.78);
  letter-spacing: 0.12em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.slide.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Arrows */

/* .arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #ffffff;
} */

/* Dots */
/* .slide-dots {
  display: none;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.dot.active {
  background: #ffffff;
  transform: scale(1.3);
} */

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff, transparent);
}

/* ============================================================
   RULER NAVIGATOR
   ============================================================ */
.ruler-nav {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 20;
  gap: 0;
  height: 65vh;
  max-height: 520px;
  user-select: none;
}

.ruler-track {
  position: relative;
  width: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 10px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.ruler-track::-webkit-scrollbar {
  display: none;
}

.ruler-tick {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  cursor: pointer;
  padding: 3px 0;
  transition: opacity 0.3s ease;
  opacity: 0.3;
  flex-shrink: 0;
}

.ruler-tick:hover {
  opacity: 0.7;
}

.ruler-tick.active {
  opacity: 1;
}

.ruler-tick-num {
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(245, 242, 238, 0.9);
  line-height: 1;
  min-width: 12px;
  text-align: right;
}

.ruler-tick-line {
  display: block;
  height: 1px;
  background: rgba(245, 242, 238, 0.4);
  flex-shrink: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.ruler-tick .ruler-tick-line        { width: 8px; }
.ruler-tick.active .ruler-tick-line { width: 16px; background: rgba(245, 242, 238, 0.95); }

/* Between-ticks: mini sub-ticks (decorative vertical fill) */
.ruler-sub-ticks {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  pointer-events: none;
  flex-shrink: 0;
}

.ruler-sub-tick {
  display: block;
  width: 4px;
  height: 1px;
  background: rgb(245 242 238 / 60%);
}

/* Pointer triangle */
.ruler-pointer {
  position: absolute;
  margin-top: -2.4px;
  right: 48px;
  font-size: 6px;
  color: rgba(220, 80, 100, 0.9);
  line-height: 1;
  transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* Mobile: keep ruler but scale it down */
@media (max-width: 768px) {
  .ruler-nav {
    height: 50vh;
    max-height: 360px;
    right: 0;
  }
  .ruler-tick-num {
    font-size: 6px;
  }
  .ruler-tick {
    padding: 2px 0;
  }
  .ruler-pointer {
    right: 32px;
  }
}

/* ============================================================
   PORTFOLIO CATEGORIES — Hero Strip with Crossfade
   ============================================================ */
.portfolio {
  position: relative;
  width: 100%;
  width: 100%;
  height: 510px;
  overflow: hidden;
}

/* Shared background image layer */
.portfolio-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.portfolio-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 3;
  pointer-events: none;
}
.portfolio-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.portfolio-bg-img--active {
  z-index: 1;
  opacity: 1;
}
.portfolio-bg-img--next {
  z-index: 2;
  opacity: 0;
}

.portfolio-container {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
}

.portfolio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0 0 36px;
}

.portfolio-item > * {
  position: relative;
  z-index: 2;
  opacity: 0.65;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover > * {
  opacity: 1;
}

.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin: 0 0 6px;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-title {
  transform: translateY(-2px);
}

.portfolio-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.portfolio-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  color: rgba(255,255,255,0.50);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-arrow {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateX(4px);
}

.portfolio-arrow svg {
  width: 17px;
  height: 17px;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-arrow svg {
  transform: translateX(2px);
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .portfolio {
    height: auto;
  }
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item {
    min-height: 380px;
  }
  .portfolio-title {
    font-size: clamp(26px, 3.4vw, 30px);
  }
  .portfolio-subtitle {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
  .portfolio-item {
    min-height: 290px;
  }
  .portfolio-title {
    font-size: clamp(22px, 5vw, 28px);
  }
  .portfolio-subtitle {
    font-size: 8px;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
  }
  .portfolio-arrow {
    width: 36px;
    height: 36px;
  }
  .portfolio-arrow svg {
    width: 16px;
    height: 16px;
  }
}

.vertical-label-nw {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vertical-label-nw::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #1a1a1a;
  margin-top: 1px;
}

.image-col-nw {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 48px 40px 48px 80px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.image-stack-nw {
  position: relative;
  width: 100%;
}

.img-primary-nw {
  width: 83%;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.img-primary-nw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-secondary-nw {
  width: 44%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  position: absolute;
  bottom: -28px;
  right: 0;
  z-index: 2;
}

.img-secondary-nw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-col-nw {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 72px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow-nw {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7a7570;
  margin-bottom: 28px;
}

.heading-nw {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.divider-nw {
  width: 52px;
  height: 1px;
  background-color: #b5afa8;
  margin-bottom: 36px;
}

.body-text-nw {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: #3a3632;
  max-width: 440px;
}

.body-text-nw p + p {
  margin-top: 22px;
}

.cta-link-nw {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  width: fit-content;
  transition: opacity 0.25s ease;
}

.cta-link-nw:hover {
  opacity: 0.55;
}

.cta-arrow-nw {
  font-size: 14px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .about-section-nw {
    flex-direction: column;
    min-height: unset;
  }

  .vertical-label-nw {
    display: none;
  }

  .image-col-nw {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 48px 32px 72px 32px;
  }

  .img-primary-nw {
    width: 78%;
    aspect-ratio: 3 / 3.8;
  }

  .img-secondary-nw {
    width: 46%;
    bottom: -24px;
    right: 0;
  }

  .content-col-nw {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 56px 32px 64px 32px;
  }

  .body-text-nw {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .image-col-nw {
    padding: 36px 20px 60px 20px;
  }

  .img-primary-nw {
    width: 82%;
  }

  .img-secondary-nw {
    width: 50%;
    bottom: -20px;
  }

  .content-col-nw {
    padding: 44px 20px 52px 20px;
  }

  .heading-nw {
    font-size: 42px;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 40px;
  background: #F1EEE7;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-body {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
  transition: all 0.4s ease;
}
.about-link:hover { color: #2c2c2c; gap: 16px; }
.about-link svg { transition: transform 0.4s ease; }
.about-link:hover svg { transform: translateX(4px); }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: 140px 40px;
  background:#F1EEE7;
  text-align: center;
}
.quote-container { max-width: 800px; margin: 0 auto; }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: #4A443D;
  line-height: 1.5;
  margin-bottom: 40px;
}
.quote-attribution {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #56504A;
  font-style: normal;
}

/* ============================================================
   FOOTER / ENQUIRY
   ============================================================ */
.footer {
  position: relative;
  z-index: 2;
  background: #F1EEE7;
  padding: 120px 60px 100px;
  --dark: #1a1a1a;
  --body-color: #4A443D;
  --label-color: #56504A;
  --border: rgba(0,0,0,0.18);
  --border-light: rgba(0,0,0,0.10);
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 120px;
  align-items: start;
}

/* — Left Column — */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label-color);
  margin-bottom: 20px;
}
.footer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(33px, 3.7vw, 50px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 450;
  color: var(--body-color);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-contact-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.footer-contact-item:hover .footer-contact-circle {
  border-color: #C8B79C;
  color: #C8B79C;
}
.footer-contact-circle svg {
  stroke: currentColor;
}
.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--label-color);
}
.footer-contact-value {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 450;
  color: var(--dark);
  letter-spacing: 0.3px;
}

/* — Right Column — */
.footer-right {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-left: 90px;
}
.footer-form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 12px;
}
.footer-form {
  display: flex;
  flex-direction: column;
}
.footer-sentence {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: var(--body-color);
  line-height: 2.0;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.footer-inline-field {
  position: relative;
  display: inline-block;
  min-width: 130px;
  margin: 0 4px;
}
.footer-field-wide {
  flex: 1;
  min-width: 0;
}
.footer-field-medium {
  flex: 1;
}
.footer-sentence-row {
  gap: 24px;
}
.footer-inline-field input,
.footer-inline-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1px 0 3px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: var(--dark);
  letter-spacing: 0.3px;
  outline: none;
  transition: border-color 0.4s ease;
}
.footer-inline-field textarea {
  resize: none;
  min-height: 22px;
  vertical-align: bottom;
}
.footer-inline-field input::placeholder,
.footer-inline-field textarea::placeholder {
  color: #6E675F;
  font-weight: 400;
  font-style: italic;
}
.footer-inline-field input:focus,
.footer-inline-field textarea:focus {
  border-bottom-color: rgba(0,0,0,0.5);
}
.footer-inline-line {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.footer-inline-field input:focus ~ .footer-inline-line,
.footer-inline-field textarea:focus ~ .footer-inline-line {
  width: 100%;
}
.footer-inline-field.error input,
.footer-inline-field.error textarea {
  border-bottom-color: #e74c3c;
}
.footer-inline-field.error .footer-inline-line {
  background: #e74c3c;
}

/* --- Date Field --- */
.footer-date-field {
  cursor: pointer;
}
.footer-date-input {
  cursor: pointer;
  padding-right: 24px !important;
}
.footer-date-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(26,26,26,0.45);
  transition: color 0.4s ease;
  pointer-events: auto;
  z-index: 2;
}
.footer-date-icon svg {
  stroke: currentColor;
}
.footer-date-field:hover .footer-date-icon,
.footer-date-field:focus-within .footer-date-icon {
  color: var(--dark);
}
.footer-date-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  border: none;
  padding: 0;
  margin: 0;
}
.footer-date-hidden::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
}
.footer-date-hidden::-webkit-datetime-edit-fields-wrapper { opacity: 0; }
.footer-date-hidden::-webkit-datetime-edit-text { opacity: 0; }
.footer-date-hidden::-webkit-datetime-edit-month-field,
.footer-date-hidden::-webkit-datetime-edit-day-field,
.footer-date-hidden::-webkit-datetime-edit-year-field { opacity: 0; }

/* --- Submit Row --- */
.footer-submit-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
}
.footer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  background: #C8B79C;
  color: #111111;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-submit:hover {
  background: #d4c5ad;
  transform: translateY(-1px);
}
.footer-submit:active {
  background: #b8a78c;
  transform: translateY(0);
}
.footer-disclaimer {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 450;
  color: var(--label-color);
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.enquiry-form-status {
  margin-top: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  min-height: 18px;
  color: #4A443D;
}
.enquiry-form-status.success { color: #4A443D; }
.enquiry-form-status.error { color: #e74c3c; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 430px;
  overflow: hidden;
  background: #4d4d4d;
  z-index: 1;
  margin-top: 3rem;
}
.cta-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 12%,
      rgba(0, 0, 0, 0.20) 25%,
      rgba(0, 0, 0, 0) 40%
    ),
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 12%,
      rgba(0, 0, 0, 0.20) 25%,
      rgba(0, 0, 0, 0) 40%
    );
}

/* Text content block — left-aligned, vertically centered */
.cta-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 56px 48px 56px clamp(36px, 6vw, 80px);
  box-sizing: border-box;
}

.cta-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 26px;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  margin: 0 0 20px;
}
.cta-heading em {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: 'Cormorant Garamond', serif;
}

.cta-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(187 187 187 / 90%);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  max-width: 440px;
  margin: 0 0 20px;
}

/* CTA button — below the text block, aligned with its left edge */
.cta-btn {
  align-self: flex-start;
  margin: 12px 0 0;
  display: inline-block;
  padding: 13px 16px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}
.cta-btn-arrow {
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.45s ease;
}
.cta-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
}
.cta-btn:hover .cta-btn-arrow {
  transform: translateX(5px);
}

/* Fade-up entrance with 150ms stagger */
.cta-content > *,
.cta-btn {
  opacity: 0;
  animation: ctaFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cta-content > *:nth-child(1) { animation-delay: 0.1s; }
.cta-content > *:nth-child(2) { animation-delay: 0.25s; }
.cta-content > *:nth-child(3) { animation-delay: 0.4s; }
.cta-btn { animation-delay: 0.55s; }
@keyframes ctaFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cta-section {
    height: clamp(500px, 68vh, 680px);
  }
  .cta-content {
    padding: 44px clamp(24px, 8vw, 40px);
  }
  .cta-heading {
    font-size: clamp(28px, 7vw, 40px);
  }
}

@media (max-width: 480px) {
  .cta-section {
    height: clamp(480px, 65vh, 630px);
  }
  .cta-content {
    padding: 36px 20px;
  }
  .cta-heading {
    font-size: clamp(28px, 7.5vw, 40px);
  }
  .cta-btn {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .cta-image-section {
    padding: 0 28px;
  }
}

@media (max-width: 480px) {
  .cta-image-section {
    padding: 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-content > *,
  .cta-btn {
    animation: none;
    opacity: 1;
  }
}

/* ============================================================
   CTA IMAGE SECTION — card-reveal over sticky CTA
   ============================================================ */
.cta-image-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
  background: #F1EEE7;
  border-radius: 32px 32px 0 0;
  margin-top: clamp(40px, 5vw, 60px);
  overflow: hidden;
}
.cta-image-full {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   SIGNATURE COLLECTION — HERO
   ============================================================ */
.hero-exp {
  --sc-dark: #1a1410;
  --sc-mid: #4a3a30;
  --sc-light: #8a7a6e;
  --sc-gold: #C8B79C;
  --sc-bg: #F1EEE7;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 6vw, 100px);
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(100px, 10vh, 130px) clamp(72px, 8vw, 120px);
  width: 100%;
  background-color: var(--sc-bg);
  color: var(--sc-dark);
  overflow: hidden;
  text-align: left;
}

.hero__copy-exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow-exp {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sc-mid);
  margin-bottom: 28px;
}

.hero__headline-exp {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.15;
  color: var(--sc-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__body-exp {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  color: var(--sc-light);
  max-width: 460px;
  margin-bottom: 44px;
}

/* --- Premium Pill CTA --- */
.hero__cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px 16px 40px;
  border: none;
  border-radius: 100px;
  background: var(--sc-dark);
  color: #f6f3ec;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.hero__cta-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__cta-pill:hover {
  background: #2c221c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 20, 16, 0.2);
}
.hero__cta-pill:active {
  transform: translateY(0);
}

.hero__cta-pill-text {
  position: relative;
  z-index: 1;
}

.hero__cta-pill-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__cta-pill:hover .hero__cta-pill-arrow {
  transform: translateX(4px);
}
.hero__cta-pill-arrow svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* --- Cinematic overlay (covers page on gallery open) --- */
.hero__cinema-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s 0.6s;
  pointer-events: none;
}
.hero__cinema-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s 0s;
  pointer-events: all;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-exp {
    padding: 80px 28px;
    min-height: 90vh;
    min-height: 90dvh;
  }
  .hero__headline-exp {
    font-size: clamp(28px, 7vw, 40px);
  }
  .hero__body-exp {
    max-width: 100%;
    font-size: 14px;
  }
  .hero__cta-pill {
    padding: 14px 28px 14px 32px;
    font-size: 12px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-exp {
    padding: 60px 20px;
  }
}

.hero__left-exp {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 40px 90px -45px rgba(26, 20, 16, 0.55);
}

.hero__left-exp img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.hero__copy-exp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0;
  z-index: 2;
}

.hero__eyebrow-exp {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 32px;
}

.hero__headline-exp {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__headline-exp em {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: 'Cormorant Garamond', serif;
}

.hero__body-exp {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15.5px);
  line-height: 1.85;
  color: #666666;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero__body-exp + .hero__body-exp {
  margin-top: -8px;
  margin-bottom: 40px;
}

.hero__cta-exp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-dark);
}

.hero__cta-label-exp {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero__cta-icon-exp {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.hero__cta-exp:hover .hero__cta-icon-exp {
  transform: translateY(3px);
}

@media (max-width: 1024px) {
  .hero-exp {
    grid-template-columns: 1fr;
    gap: clamp(48px, 6vw, 72px);
    padding: 80px 40px 96px;
  }
  .hero__copy-exp {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero__left-exp {
    width: min(100%, 460px);
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-exp {
    padding: 64px 28px 80px;
  }
  .hero__left-exp {
    width: min(100%, 420px);
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }
  .hero__headline-exp {
    font-size: clamp(28px, 7.5vw, 40px);
  }
  .hero__body-exp {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-exp {
    padding: 48px 20px 64px;
  }
  .hero__left-exp {
    width: min(100%, 380px);
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-container { gap: 48px; }
  .footer-container { gap: 80px; }
}
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-container { gap: 0; }
  .hamburger { display: block; }
  .mobile-overlay { display: flex; }

  .arrow-left, .arrow-right { display: none; }
  .slide-dots {
    display: flex;
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 10px;
  }
  .slide-subtitle { letter-spacing: 0.08em; }
  .slide-content { padding: 0 24px; }

  .about { padding: 60px 24px; }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { max-width: 400px; margin: 0 auto; }

  .quote {
  padding: 100px 24px; }

  .footer {
    padding: 60px 32px 32px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-right { padding-left: 0; }
  .footer-field-wide { flex: 1 1 260px; }
  .footer-field-medium { flex: 1 1 140px; }
  .footer-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .navbar { padding: 16px 20px; }
  .slide-title { font-size: 22px; letter-spacing: 0.06em; }
  .slide-content { padding: 0 16px; }
  .footer { padding: 48px 20px 24px; }
  .footer-headline { font-size: 30px; }
  .footer-sentence { font-size: 13px; line-height: 2.2; flex-wrap: wrap; }
  .footer-field-wide { flex: 1 1 200px; }
  .footer-field-medium { flex: 1 1 130px; }
  .footer-sentence-row { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 360px) {
  .slide-title { font-size: 18px; }
  .slide-subtitle { font-size: 10px; letter-spacing: 0.06em; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
:root {
  --cream:        #F1EEE7;
  --dark:         #1a1a1a;
  --body-color:   #4a4a4a;
  --label-color:  #8a8a8a;
  --accent-blue:  #7b9bb5;
  --border:       #d5cfc5;
  --border-light: #e0dbd2;

  --px: 80px;
  --px-md: 48px;
  --px-sm: 24px;
}

/* — Typography helpers — */
.h-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.22;
  color: var(--dark);
}

.label-caps {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label-color);
}

.divider-blue {
  width: 30px;
  height: 1.5px;
  background: var(--accent-blue);
  flex-shrink: 0;
}

/* — Hero — */
.hero-cth {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-cth {
  position: absolute;
  inset: 0;
  background: url('images/_NIL7349.jpg') center/cover no-repeat;
  filter: brightness(0.52);
}

.hero-content-cth {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--px-sm);
}

.hero-title-cth {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.22;
  letter-spacing: 0.01em;
  max-width: 580px;
}

.hero-divider-cth {
  width: 36px;
  height: 2px;
  background: var(--accent-blue);
  margin: 18px auto 16px;
}

.hero-subtitle-cth {
  font-family: 'Manrope', sans-serif;
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  line-height: 1.85;
}

/* — Contact section — */
.contact-section {
  background: var(--cream);
  padding: 72px var(--px);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.contact-left { display: flex; flex-direction: column; gap: 0; }
.contact-left .section-label { margin-bottom: 14px; }

.contact-left h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 14px;
}

.contact-left .divider-blue { margin-bottom: 18px; }

.contact-left .body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--body-color);
  line-height: 1.80;
  margin-bottom: 28px;
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--body-color);
}

.contact-info .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info .icon svg {
  width: 13px; height: 13px;
  stroke: var(--label-color);
  fill: none;
  stroke-width: 1.5;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 22px;
}

.form-row-full { margin-bottom: 22px; }
.form-field { position: relative; }

.form-field label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--label-color);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 5px 0 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder { color: transparent; }

.form-field .field-icon {
  position: absolute;
  right: 0;
  bottom: 10px;
  pointer-events: none;
}

.form-field .field-icon svg {
  width: 13px; height: 13px;
  stroke: var(--label-color);
  fill: none;
  stroke-width: 1.5;
}

.form-field select { padding-right: 20px; color: var(--label-color); cursor: pointer; }

.form-field .select-arrow {
  position: absolute;
  right: 0;
  bottom: 11px;
  pointer-events: none;
}

.form-field .select-arrow svg {
  width: 12px; height: 12px;
  stroke: var(--label-color);
  fill: none;
  stroke-width: 1.8;
}

.form-field textarea {
  height: 72px;
  resize: none;
}

.btn-send {
  align-self: flex-start;
  background: var(--dark);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-send:hover { background: #333; }

/* — Studio section — */
.studio-section {
  background: var(--cream);
  padding: 64px var(--px);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.studio-left { display: flex; flex-direction: column; }
.studio-left .section-label { margin-bottom: 14px; }

.studio-left h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 14px;
}

.studio-left .divider-blue { margin-bottom: 18px; }

.studio-left .body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--body-color);
  line-height: 1.80;
  margin-bottom: 24px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.cta-link:hover { opacity: 0.55; }

.cta-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.studio-photo-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: url('images/_AAB8544.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* — Quote section — */
.quote-section-cth {
  background: var(--cream);
  padding: 60px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.quote-icon-cth {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.quote-text-cth {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.50;
  max-width: 520px;
  margin-bottom: 14px;
}

.quote-attr-cth {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--label-color);
}

/* — Photo grid — */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-grid-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-grid-item:hover img { transform: scale(1.04); }

/* — Contact responsive — */
@media (max-width: 1024px) {
  :root { --px: var(--px-md); }

  .contact-section,
  .studio-section {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 56px var(--px-md);
  }
}

@media (max-width: 768px) {
  .hero-cth { height: 260px; }
  .hero-subtitle-cth { font-size: 8.5px; letter-spacing: 0.20em; }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px var(--px-sm);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row .form-field { margin-bottom: 22px; }

  .studio-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--px-sm);
  }

  .studio-photo-wrap { aspect-ratio: 4/3; }

  .quote-section-cth { padding: 48px var(--px-sm); }

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

@media (max-width: 480px) {
  .hero-cth { height: 230px; }
  .hero-title-cth { font-size: 26px; }

  .contact-section,
  .studio-section,
  .quote-section-cth { padding-left: 20px; padding-right: 20px; }

  .btn-send { width: 100%; text-align: center; }
}
