:root {
  /* =========================
     Design Tokens / Colors
  ========================= */
  --bg: #cfc3b3; /* warm taupe */
  --surface: #f3efe7; /* soft ivory */
  --surface-soft: #e2d7c8; /* almond */
  --text: #2b2622; /* espresso */
  --muted: #7f8a7a; /* sage gray */
  --line: rgba(43, 38, 34, 0.08); /* espresso line */

  /* =========================
     Design Tokens / Accent Colors
  ========================= */
  --accent: #556b5d; /* deep eucalyptus */
  --accent-soft: #a8b5a2; /* dusty sage */
  --clay: #c7a38b; /* clay */

  /* =========================
     Design Tokens / Typography
  ========================= */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Poppins", Arial, sans-serif;

  /* =========================
     Design Tokens / Layout
  ========================= */
  --container: 1200px;

  /* =========================
     Design Tokens / Spacing
  ========================= */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  /* =========================
     Design Tokens / Motion
  ========================= */
  --transition: 180ms ease;
}

/* =========================
   Base / Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

ul,
ol {
  margin-top: 0;
  padding-left: 1.25rem;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* =========================
   Accessibility
========================= */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--text);
  color: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

/* =========================
   Global Layout Helpers
========================= */

.container {
  width: min(100% - 4rem, 1040px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 4rem, 1200px);
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

/* =========================
   Global Typography
========================= */

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.15;
}

p {
  max-width: 65ch;
}

/* =========================
   Header
========================= */

.site-header {
  padding: 0.9rem 0 1.1rem;
  border-bottom: 1px solid rgba(43, 38, 34, 0.05);
}

.header-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: min(340px, 72vw);
  height: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

/* =========================
   Header — Responsive
========================= */

@media (min-width: 1024px) {
  .site-logo {
    width: min(380px, 34vw);
  }
}

/* =========================
   Hero Pattern
========================= */

.hero-home {
  padding-top: var(--space-3);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.hero-home-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.26),
    rgba(0, 0, 0, 0.52)
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1;
}

.hero-overlay h1 {
  max-width: 14ch;
  margin: 0;
  text-align: center;
  color: var(--surface);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

/* =========================
   Hero Pattern — Responsive
========================= */

@media (min-width: 1024px) {
  .hero-overlay h1 {
    max-width: none;
    font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  }
}

/* =========================
   Story Section
========================= */

.story {
  padding-top: var(--space-7);
}

.story-grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.story-image-wrap {
  background: var(--surface-soft);
  overflow: hidden;
  margin-top: 0;
  align-self: start;
}

.story-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.25rem;
}

.content-block {
  display: grid;
  gap: 0;
}

.story-block h2 {
  margin: 0 0 0.5rem;
}

.story-block .lead {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
}

.story-block p:last-child {
  margin: 0;
}

.story-cta {
  margin-top: 1.75rem;
  margin-bottom: var(--space-6);
}

.story-copy p:last-of-type {
  margin-bottom: 0.5rem;
}

/* =========================
   Story Section — Responsive
========================= */

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.75rem;
  }
}

@media (max-width: 767px) {
  .story-grid {
    gap: 1.25rem;
  }

  .story-block + .story-block {
    margin-top: 1.5rem;
  }

  .story-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}

/* =========================
   Detail Grid
========================= */

.studio-details {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.studio-details-grid {
  display: grid;
  gap: 1.25rem;
}

.detail-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: 0 8px 24px rgba(43, 38, 34, 0.09);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* =========================
   Detail Grid — Responsive
========================= */

@media (min-width: 768px) {
  .studio-details-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .studio-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .detail-card img {
    aspect-ratio: 1 / 1.15;
  }
}

/* =========================
   Surface Panels
========================= */

.text-panel {
  background: rgba(226, 215, 200, 0.65);
  padding: clamp(1rem, 1.4vw, 1.5rem);
  outline: 1px solid rgba(43, 38, 34, 0.06);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.045);
}

/* =========================
   Surface Panels — Responsive
========================= */

@media (max-width: 767px) {
  .text-panel {
    padding: 1.25rem;
  }
}

/* =========================
   Buttons
========================= */

.button-link {
  display: inline-block;
  min-width: 220px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button-link:hover,
.button-link:focus-visible {
  background: transparent;
  color: var(--accent);
}

/* =========================
   Footer
========================= */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-home {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.footer-left,
.footer-center,
.footer-right {
  display: grid;
  gap: 0.5rem;
}

.footer-title {
  margin-bottom: 0.15rem;
}

/* Footer brand link */

.footer-brand,
.footer-brand:visited,
.footer-brand:hover,
.footer-brand:active {
  color: inherit;
  text-decoration: none;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.8;
}

.site-credit {
  margin: 0;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.site-credit-prefix {
  font-size: 0.75rem;
  opacity: 0.7;
}

.site-credit-name {
  font-size: 0.75rem;
  opacity: 0.8;
}

.site-credit a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--accent);
}

.site-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.site-credit-mark {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  transform: translateY(0.5px);
  transition: opacity var(--transition);
}

.site-credit-link:hover .site-credit-mark,
.site-credit-link:focus-visible .site-credit-mark {
  opacity: 1;
}

.footer-right {
  align-content: start;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
}

.footer-contact p {
  margin: 0;
  text-align: left;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-secondary-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-secondary-nav a {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.82;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.footer-secondary-nav a:hover,
.footer-secondary-nav a:focus-visible {
  color: var(--muted);
  opacity: 1;
}

/* =========================
   Footer — Responsive
========================= */

@media (min-width: 768px) {
  .footer-home {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
  }

  .footer-left {
    justify-self: start;
  }

  .footer-center {
    justify-self: center;
  }

  .footer-right {
    justify-self: end;
  }

  .footer-secondary-nav ul {
    justify-content: center;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-contact p {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .footer-home {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-self: start;
  }

  .footer-center {
    order: 1;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 3;
  }

  .footer-secondary-nav ul {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-contact p {
    text-align: left;
  }
}

/* =========================
   Forms
========================= */

.inquiry-header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.inquiry-form {
  max-width: 760px;
}

.inquiry-form fieldset {
  border: none;
  padding: 0;
  min-width: 0;
}

.form-section {
  border: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-section legend {
  margin: 0 0 0.75rem;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.form-field {
  margin: 0 0 0.85rem;
}

.form-field label {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.helper {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: rgba(43, 38, 34, 0.68);
  max-width: 60ch;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

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

.form-field input[type="text"]:focus,
.form-field input[type="tel"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="date"]:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.42);
}

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}

.form-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(43, 38, 34, 0.18);
  background: transparent;
  padding: 0.42rem 0.7rem;
  font-size: 0.88rem;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.form-options label:hover,
.form-options label:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.16);
}

.form-options input[type="checkbox"] {
  margin: 0;
  accent-color: var(--accent);
}

.form-submit {
  margin-top: 1.5rem;
}

/* =========================
   Forms — Responsive
========================= */

@media (max-width: 767px) {
  .form-options {
    gap: 0.5rem;
  }

  .form-options label {
    font-size: 0.88rem;
  }

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

/* =========================
   File Upload UI
========================= */

.file-upload input[type="file"] {
  display: none;
}

.file-upload {
  border: 1px dashed #b9afa1;
  background: rgba(255, 255, 255, 0.16);
  padding: 1.1rem;
}

.file-upload .file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 260px;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.file-upload .file-upload-button:hover,
.file-upload .file-upload-button:focus-visible {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.file-upload-status {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: rgba(43, 38, 34, 0.72);
}

.file-upload-status.has-file {
  color: var(--text);
}

/* =========================
   File Upload UI — Responsive
========================= */

@media (max-width: 767px) {
  .file-upload .file-upload-button {
    min-width: 100%;
    max-width: none;
  }
}

/* =========================
   Homepage
========================= */

.home-page .story-copy.text-panel {
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
}

/* =========================
   Homepage — Responsive
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .hero-overlay h1 {
    max-width: 18ch;
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .home-page .story-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .home-page .story-image-wrap {
    height: 100%;
  }

  .home-page .story-image {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .home-page .story-copy {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .home-page .story-grid {
    align-items: stretch;
  }

  .home-page .story-image-wrap {
    height: 100%;
  }

  .home-page .story-image {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 767px) {
  .home-page .section {
    padding-bottom: 1.25rem;
  }

  .home-page .section + .section {
    padding-top: 1.25rem;
  }

  .home-page .hero-home-image {
    aspect-ratio: 4 / 5;
  }

  .home-page .hero-overlay {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
  }

  .home-page .hero-overlay h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    max-width: 320px;
    margin: 0 auto;
  }

  .home-page .story-copy {
    order: 1;
    gap: 1.5rem;
  }

  .home-page .story-image-wrap {
    order: 2;
    margin-top: 1.5rem;
  }

  .home-page .story-image {
    aspect-ratio: 4 / 3;
    object-position: center top;
  }
}

/* =========================
   About Page
========================= */

.about-page .story-grid {
  align-items: start;
}

.about-page .story-image-wrap {
  align-self: start;
  height: auto;
}

.about-page .story-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.about-intro {
  margin: 0.5rem 0 2.5rem;
  max-width: 48rem;
}

.about-role {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.about-name {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
}

.about-statement {
  margin: 0;
  max-width: 48ch;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}

.about-page .story-copy {
  gap: 1.25rem;
}

.about-page .story-copy p {
  margin: 0;
}

.about-page .studio-details {
  padding-top: 4rem;
}

/* =========================
   About Page — Responsive
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
  .about-page .story-grid {
    align-items: start;
  }

  .about-page .studio-details {
    padding-top: 0.75rem;
  }

  .about-page .story-cta {
    margin-top: 0.75rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .about-page .story-copy .button-link {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-page .story.section {
    padding-bottom: 1.25rem;
  }

  .about-page .about-intro {
    margin-bottom: 1rem;
  }

  .about-page .about-statement {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 0.25rem;
    max-width: none;
  }

  .about-page .story-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-page .story-image-wrap {
    order: 1;
    max-width: 82%;
    margin: 0.5rem auto 0;
  }

  .about-page .story-image {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

  .about-page .story-copy {
    order: 2;
  }

  .about-page .studio-details {
    padding-top: 1.5rem;
  }
}

/* =========================================
   Future Enhancement Note — About (Tablet)
========================================= */

/*
The About page tablet layout currently
allows the text column to extend beyond
the height of the image, creating empty
space beneath the image.

A future refinement could restructure the
HTML so only the top portion of text sits
beside the image, with remaining content
flowing full-width below.

Current version is stable and acceptable.
Do not modify unless revisiting layout
intentionally.
*/

/* =========================
   Services Page
========================= */

.services-page .section {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.services-page .services-copy {
  max-width: 42rem;
}

.services-page .services-intro .services-copy {
  max-width: none;
  gap: 0;
  margin-inline: 0;
}

.services-page .services-intro .lead {
  margin-bottom: 0.9rem;
}

.services-page .services-intro p:last-of-type {
  margin-bottom: 0;
}

.services-page .services-intro .button-link {
  margin-top: 1.5rem;
}

.services-page .services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: stretch;
}

.services-page .services-intro-grid > * {
  min-height: 360px;
}

.services-page .services-intro .text-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-page .services-intro-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  height: 100%;
}

.services-page .services-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-page .services-split {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.services-page .services-split:first-of-type {
  padding-top: 1.5rem;
}

.services-page .services-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.services-page .services-split-grid-reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.95fr);
}

.services-page .services-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  height: 100%;
}

.services-page .services-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.services-page .services-split .text-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-page .service-item {
  margin-bottom: 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.services-page .service-item:first-of-type {
  padding-top: 0.5rem;
}

.services-page .service-item:last-of-type {
  padding-bottom: 0;
}

.services-page .service-item h3 {
  margin-bottom: 0.2rem;
}

.services-page .service-price {
  margin: 0 0 0.5rem;
  font-weight: 400;
  color: var(--text);
}

/* =========================
   Services Page — Responsive
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
  .services-page .services-intro-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.88fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .services-page .services-intro-grid > * {
    min-height: 300px;
  }

  .services-page .services-intro .services-copy {
    max-width: none;
    margin-inline: 0;
  }

  .services-page .services-intro .text-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .services-page .services-intro-image {
    height: 100%;
  }

  .services-page .services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-page .services-split-grid,
  .services-page .services-split-grid-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .services-page .services-split {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .services-page .services-split-grid,
  .services-page .services-split-grid-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-page .services-image {
    height: auto;
  }

  .services-page .services-image img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .services-page .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =========================
   Bridal Page
========================= */

.bridal-intro {
  padding-bottom: 4rem;
}

.bridal-intro .text-panel {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}

.bridal-intro-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.bridal-copy {
  max-width: none;
  padding-top: 0;
}

.bridal-page .text-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bridal-copy h1 {
  margin-bottom: 1.5rem;
}

.bridal-copy .lead {
  margin: 0 0 1.1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
}

.bridal-copy p {
  margin: 0 0 1rem;
}

.bridal-copy p:last-child {
  margin-bottom: 0;
}

.bridal-intro-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
}

.bridal-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

.bridal-inquiry-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.bridal-page .detail-card img {
  filter: brightness(0.88) contrast(0.92) saturate(0.9);
}

/* =========================
   Bridal Page — Responsive
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
  .bridal-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .bridal-copy {
    padding-top: 0;
  }
}

@media (min-width: 900px) {
  .bridal-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .bridal-copy {
    padding-top: 0;
  }

  .bridal-intro-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* =========================
   Contact Page
========================= */

.contact-hero {
  padding-top: var(--space-5);
  padding-bottom: var(--space-6);
}

.contact-page .hero-frame {
  background: transparent;
}

.contact-page .hero-frame::after {
  display: none;
}

.contact-page .hero-home-image {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.contact-page .inquiry-header {
  padding-top: 0;
}

.contact-page .section {
  padding-top: 1.5rem;
}

/* =========================
   Shop Page
========================= */

.shop-page .section {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.shop-intro-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.shop-copy {
  max-width: none;
}

.shop-copy h1 {
  margin-bottom: 1.25rem;
}

.shop-copy .lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
  max-width: 44ch;
}

.shop-copy p {
  max-width: 60ch;
}

.shop-copy p:last-child {
  margin-bottom: 0;
}

.shop-intro .text-panel {
  max-width: 640px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.shop-intro-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
}

.shop-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
}

.shop-lines-panel {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.shop-lines-panel h2 {
  margin-bottom: 1.5rem;
}

.shop-lines-grid {
  display: grid;
  gap: 1rem;
}

.shop-line-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.shop-line-item:first-child {
  padding-top: 0;
  border-top: none;
}

.shop-line-item h3 {
  margin-bottom: 0.35rem;
}

.shop-line-item p {
  max-width: 30ch;
  margin-bottom: 1.1rem;
}

.shop-line-item .button-link {
  min-width: 220px;
}

/* =========================
   Shop Page — Responsive
========================= */

@media (min-width: 768px) {
  .shop-intro-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
  }

  .shop-lines-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .shop-line-item:nth-child(2) {
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 767px) {
  .shop-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-lines-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-line-item .button-link {
    min-width: 100%;
  }
}

/* =========================
   Clients Page
========================= */

.clients-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.clients-intro {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.clients-intro .lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  max-width: 34ch;
}

.clients-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.clients-image-wrap {
  overflow: hidden;
}
/* =========================
   Clients Access Section
========================= */

.clients-access {
  padding-top: 0.75rem;
}

/* FULL WIDTH PANEL */
.clients-gate {
  width: 100%;
  max-width: none;
}

/* INNER CONTENT (controls width of text box) */
.clients-gate-inner {
  max-width: 420px;
}

/* Form styling */
.clients-gate label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

.clients-gate input {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  margin-bottom: 1.25rem;
  outline: none;
}

.clients-gate input:focus {
  border-bottom-color: var(--text);
}

/* =========================
   Clients Booking
========================= */

.clients-booking-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(226, 215, 200, 0.65);
}

.clients-booking-embed {
  margin-top: 1rem;
  min-height: 1200px;
  overflow: hidden;
}

#squareBookingEmbed iframe {
  width: 100% !important;
  height: 1200px !important;
  min-height: 1200px !important;
  border: 0;
  display: block;
}

/* Hidden helper */
.is-hidden {
  display: none;
}

/* =========================
   Clients Responsive
========================= */

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
  }

  .clients-intro {
    grid-area: text;
  }

  .clients-image-wrap {
    grid-area: image;
  }
}

@media (max-width: 767px) {
  .clients-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
  }

  .clients-image-wrap {
    grid-area: image;
  }

  .clients-intro {
    grid-area: text;
  }

  .clients-booking-embed {
    min-height: 900px;
  }

  #squareBookingEmbed iframe {
    height: 900px !important;
    min-height: 900px !important;
  }
}

/* =========================
   Global Mobile Adjustments
========================= */

@media (max-width: 767px) {
  .section {
    padding: 2.5rem 0;
  }
}
