:root {
  --olive: #5b5d4e;
  --olive-deep: #3d4035;
  --olive-soft: #767768;
  --ivory: #f7f3ea;
  --champagne: #d9c8ac;
  --stone: #e8e0d3;
  --linen: #fbf8f1;
  --ink: #22231e;
  --muted: #6f6a5f;
  --line: rgba(61, 64, 53, 0.2);
  --white-line: rgba(247, 243, 234, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 68px);
  color: var(--ivory);
  background: rgba(61, 64, 53, 0.96);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
}

.brand,
nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(136px, 16vw, 184px);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

nav {
  gap: clamp(16px, 3vw, 38px);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a:hover,
nav a[aria-current="page"],
.text-link:hover {
  color: var(--champagne);
}

.header-action {
  justify-self: end;
  min-height: 40px;
  padding: 0 18px;
  color: var(--olive-deep);
  background: var(--ivory);
  border: 1px solid rgba(247, 243, 234, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 77px);
  color: var(--ivory);
  background: var(--olive);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(70px, 9vw, 122px) clamp(22px, 6vw, 76px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(247, 243, 234, 0.16);
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--white-line);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(91, 93, 78, 0.54), rgba(91, 93, 78, 0.06) 36%),
    rgba(217, 200, 172, 0.08);
  mix-blend-mode: multiply;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.66) contrast(0.95) brightness(1.06);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.8vw, 7.1rem);
  line-height: 0.92;
}

h2 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.hero-copy,
.space-copy p,
.booking-intro p,
.service-strip p,
footer {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(247, 243, 234, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions,
.booking-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary {
  color: var(--olive-deep);
  background: var(--ivory);
  border-color: rgba(247, 243, 234, 0.8);
}

.booking-form .primary,
.confirmation .primary {
  color: var(--ivory);
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.text-link {
  color: var(--ivory);
  border-bottom: 1px solid var(--champagne);
}

.text-link.dark {
  color: var(--olive-deep);
}

.quick-book {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--olive-deep);
}

.quick-book div {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 30px clamp(18px, 4vw, 48px);
  color: var(--ivory);
  border-right: 1px solid var(--white-line);
}

.quick-book strong {
  color: var(--champagne);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.quick-book span {
  color: rgba(247, 243, 234, 0.68);
  line-height: 1.55;
}

.section,
.booking-section,
.space-band,
.confirmation,
.journal-preview,
.blog-layout,
.journal-cta {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 78px);
}

.section {
  background: var(--linen);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.25fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: 48px;
}

.section-heading > * {
  min-width: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: clamp(360px, 45vw, 580px);
  overflow: hidden;
  background: var(--olive-deep);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58) contrast(0.96) brightness(1.02);
  transform: scale(1.03);
}

.work-card.crop-left img {
  object-position: 24% center;
}

.work-card.crop-center img {
  object-position: 54% center;
}

.work-card.crop-right img {
  object-position: 74% center;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 37, 30, 0.72), rgba(35, 37, 30, 0.05) 58%);
}

.work-card div {
  position: absolute;
  left: clamp(20px, 3vw, 38px);
  right: clamp(20px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 38px);
  z-index: 1;
  color: var(--ivory);
}

.work-card span,
.service-strip span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 620px;
  margin: 0;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-strip article {
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 252, 246, 0.82);
}

.service-strip h3 {
  font-size: 1.55rem;
}

.space-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--stone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.space-copy {
  position: sticky;
  top: 112px;
}

.space-copy p {
  max-width: 610px;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--olive-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-list strong {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--linen);
}

.booking-intro {
  position: sticky;
  top: 112px;
}

.rate-strip {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.rate-strip span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.rate-strip strong {
  color: var(--olive-deep);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 400;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 40px);
  background: #f4eee4;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(61, 64, 53, 0.08);
}

.span-2 {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: var(--olive-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(61, 64, 53, 0.26);
  border-radius: 0;
  background: rgba(255, 252, 246, 0.82);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(91, 93, 78, 0.15);
  border-color: var(--olive-deep);
}

.add-ons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(61, 64, 53, 0.26);
}

.add-ons legend {
  padding: 0 8px;
}

.add-ons label {
  display: flex;
  min-height: 38px;
  gap: 9px;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.add-ons input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--olive-deep);
}

.booking-footer {
  justify-content: space-between;
  padding-top: 8px;
}

#estimate {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.confirmation {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--olive-deep);
  color: var(--ivory);
}

.confirmation[hidden] {
  display: none;
}

.confirmation p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(247, 243, 234, 0.74);
  line-height: 1.6;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 78px);
  color: rgba(247, 243, 234, 0.7);
  background: var(--olive-deep);
  border-top: 1px solid var(--white-line);
}

footer a {
  color: var(--ivory);
  font-weight: 600;
}

.footer-brand {
  display: block;
  width: 148px;
}

.journal-preview {
  background: var(--stone);
  border-top: 1px solid var(--line);
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.journal-card,
.post-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid var(--line);
}

.journal-card span,
.post-card span,
.post-card time {
  color: var(--olive-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.post-card time {
  color: var(--muted);
  font-weight: 700;
}

.journal-card p,
.post-card p,
.blog-hero p,
.featured-post p,
.journal-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.journal-card a {
  width: fit-content;
  color: var(--olive-deep);
  border-bottom: 1px solid var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-hero {
  display: grid;
  min-height: 62vh;
  align-items: end;
  padding: clamp(96px, 12vw, 168px) clamp(20px, 6vw, 78px) clamp(70px, 9vw, 118px);
  color: var(--ivory);
  background:
    linear-gradient(rgba(61, 64, 53, 0.82), rgba(61, 64, 53, 0.88)),
    url("assets/studio-hero.png") center / cover;
}

.blog-hero > div {
  width: min(920px, 100%);
}

.blog-hero h1 {
  margin-bottom: 24px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(247, 243, 234, 0.74);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.blog-layout {
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  background: var(--linen);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.featured-post img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.62) contrast(0.96) brightness(1.02);
}

.featured-post h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.1rem);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  min-height: 290px;
  align-content: start;
}

.journal-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--ivory);
  background: var(--olive-deep);
}

.journal-cta h2 {
  max-width: 760px;
}

.journal-cta p {
  max-width: 720px;
  color: rgba(247, 243, 234, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .space-band,
  .booking-section,
  .section-heading,
  .featured-post,
  .journal-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
    border-left: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .quick-book,
  .service-strip,
  .journal-preview-grid,
  .post-list {
    grid-template-columns: 1fr 1fr;
  }

  .space-copy,
  .booking-intro {
    position: static;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-content {
    padding: 70px 62px;
  }

  .hero-content::before {
    inset: 40px;
  }

  .hero-mark {
    display: none;
  }

  .hero .eyebrow {
    max-width: 310px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(3.25rem, 5.6vw, 4.25rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 126px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.64rem;
  }

  .hero-content {
    padding: 54px 20px 58px;
  }

  .hero-content::before {
    inset: 14px;
  }

  .hero-media {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .quick-book,
  .work-grid,
  .service-strip,
  .journal-preview-grid,
  .post-list,
  .booking-form,
  .add-ons,
  .confirmation {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 370px;
  }

  .booking-form {
    padding: 18px;
    box-shadow: none;
  }

  .booking-footer {
    align-items: stretch;
  }

  .booking-footer .button,
  .hero-actions .button,
  .confirmation .button {
    width: 100%;
  }
}


.page-hero {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 7vw, 96px) clamp(52px, 8vw, 96px);
  color: var(--ivory);
  background: var(--olive);
  border-bottom: 1px solid var(--white-line);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(247, 243, 234, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.page-cta,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 84px) clamp(22px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.page-cta {
  color: var(--ivory);
  background: var(--olive-deep);
}

.page-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.72);
  line-height: 1.75;
}

.location-section {
  color: var(--ink);
  background: var(--linen);
}

.location-section h2 {
  margin-bottom: 0;
}

.location-details {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.75;
}

.location-details p:last-child {
  margin-bottom: 0;
  color: var(--olive-deep);
  font-weight: 700;
}

@media (max-width: 760px) {
  .page-cta,
  .location-section {
    grid-template-columns: 1fr;
  }
}
