:root {
  --paper: #f2f0ea;
  --paper-deep: #e5e0d7;
  --ink: #161714;
  --muted: #686861;
  --clay: #a46f5f;
  --sage: #8b907d;
  --line: rgba(22, 23, 20, 0.18);
  --white: #fbfaf7;
  --display: "Italiana", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.site-header {
  min-height: 88px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 234, 0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.wordmark {
  width: max-content;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.22em;
}
.wordmark span {
  display: block;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}
.primary-nav a {
  font-size: 0.78rem;
  font-weight: 500;
}
.primary-nav a:hover {
  opacity: 0.55;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
  padding: 5px 0;
  font-size: 0.78rem;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.nav-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
}
.hero-media {
  min-height: 640px;
  position: relative;
}
.hero-copy {
  padding: clamp(56px, 8vw, 132px) clamp(34px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
  max-width: 7ch;
}
.eyebrow {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-intro {
  max-width: 42ch;
  margin: 34px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}
.hero-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.quiet-link {
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-details {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
  margin-top: auto;
  padding-top: 70px;
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual {
  background-color: #c7b8aa;
  background-size: cover;
  background-position: center;
}
.visual-hero {
  background-image:
    linear-gradient(180deg, rgba(18, 17, 15, 0.03), rgba(18, 17, 15, 0.18)),
    url("https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?auto=format&fit=crop&w=1800&q=88");
}

.intro-strip {
  min-height: 118px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-strip p {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
}
.intro-strip span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-section,
.team-section,
.gallery-section,
.reviews-section,
.booking-section,
.contact-section {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 6vw, 96px);
}
.section-heading h2,
.studio-copy h2,
.gallery-topline h2,
.booking-context h2,
.contact-intro h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 82px;
}
.split-heading > p {
  max-width: 50ch;
  color: var(--muted);
}
.service-list {
  border-top: 1px solid var(--ink);
}
.service-item {
  display: grid;
  grid-template-columns: 62px minmax(240px, 1fr) minmax(160px, 0.42fr) 50px;
  gap: 34px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.service-number {
  color: var(--muted);
  font-size: 0.69rem;
}
.service-item h3 {
  margin-bottom: 7px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 500;
}
.service-item p,
.service-price span {
  color: var(--muted);
  font-size: 0.83rem;
}
.service-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-price strong {
  font-size: 0.8rem;
  font-weight: 600;
}
.service-item > a {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
}
.text-button {
  display: inline-flex;
  gap: 12px;
  margin-top: 42px;
  font-size: 0.78rem;
  font-weight: 600;
}

.studio-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 850px;
  background: var(--ink);
  color: var(--white);
}
.studio-copy {
  padding: clamp(70px, 9vw, 140px) clamp(28px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.studio-copy .eyebrow,
.studio-copy p {
  color: rgba(251, 250, 247, 0.58);
}
.studio-copy h2 {
  color: var(--white);
  max-width: 8ch;
  margin-bottom: 36px;
}
.studio-copy > p:not(.eyebrow) {
  max-width: 43ch;
  margin-bottom: 20px;
}
.studio-copy .quiet-link {
  margin-top: 18px;
  color: var(--white);
}
.studio-collage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.visual-studio-large {
  position: absolute;
  inset: 0 16% 0 0;
  background-image: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1500&q=88");
}
.visual-studio-small {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 38%;
  aspect-ratio: 0.78;
  border: 10px solid var(--ink);
  background-image: url("https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?auto=format&fit=crop&w=900&q=88");
}
.collage-note {
  position: absolute;
  top: 9%;
  right: 2.5%;
  color: rgba(251, 250, 247, 0.7);
  font-size: 0.67rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.team-section .section-heading {
  margin-bottom: 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}
.team-photo {
  aspect-ratio: 0.74;
  filter: saturate(0.72);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.team-member:hover .team-photo {
  filter: saturate(1);
  transform: translateY(-4px);
}
.team-member-featured .team-photo {
  aspect-ratio: 0.88;
}
.team-photo-one {
  background-image: url("https://images.unsplash.com/photo-1580618672591-eb180b1a973f?auto=format&fit=crop&w=900&q=85");
}
.team-photo-two {
  background-image: url("https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=800&q=85");
}
.team-photo-three {
  background-image: url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=800&q=85");
}
.team-photo-four {
  background-image: url("https://images.unsplash.com/photo-1544717305-2782549b5136?auto=format&fit=crop&w=800&q=85");
}
.team-member > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.team-member h3 {
  font-size: 0.94rem;
  font-weight: 600;
}
.team-member p {
  color: var(--muted);
  font-size: 0.7rem;
}

.gallery-section {
  background: var(--paper-deep);
}
.gallery-topline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}
.gallery-filters {
  display: flex;
  gap: 22px;
}
.filter {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.72rem;
  cursor: pointer;
}
.filter.active {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
  grid-auto-rows: 250px;
  gap: 14px;
}
.gallery-item {
  border: 0;
  min-width: 0;
  cursor: zoom-in;
  transition: opacity 0.25s ease;
}
.gallery-item:hover {
  opacity: 0.82;
}
.gallery-item.hidden {
  display: none;
}
.gallery-one {
  grid-row: span 2;
  background-image: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1000&q=86");
}
.gallery-two {
  background-image: url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=800&q=86");
}
.gallery-three {
  background-image: url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=800&q=86");
}
.gallery-four {
  grid-column: span 2;
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1200&q=86");
}
.gallery-five {
  background-image: url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=800&q=86");
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 5vw;
  display: grid;
  place-items: center;
  background: rgba(16, 17, 14, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-photo {
  width: min(900px, 92vw);
  height: min(78vh, 760px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 34px;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 0.75rem;
  cursor: pointer;
}

.reviews-section {
  display: grid;
  grid-template-columns: 0.38fr 1fr auto;
  gap: 70px;
  align-items: start;
  background: var(--clay);
  color: var(--white);
}
.review-label span {
  color: rgba(251, 250, 247, 0.65);
  font-size: 0.72rem;
}
.reviews-section .eyebrow {
  color: rgba(251, 250, 247, 0.65);
}
.testimonial-track {
  min-height: 260px;
  position: relative;
}
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.testimonial.active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.testimonial p {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.testimonial cite {
  display: block;
  margin-top: 30px;
  color: rgba(251, 250, 247, 0.7);
  font-style: normal;
  font-size: 0.72rem;
}
.testimonial-controls {
  display: flex;
  gap: 8px;
}
.testimonial-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(251, 250, 247, 0.45);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.testimonial-controls button:hover {
  background: var(--white);
  color: var(--ink);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.booking-context {
  position: sticky;
  top: 140px;
}
.booking-context h2 {
  max-width: 8ch;
  margin-bottom: 28px;
}
.booking-context > p:not(.eyebrow) {
  max-width: 40ch;
  color: var(--muted);
}
.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 36px;
  font-size: 0.78rem;
}
.booking-contact span {
  color: var(--muted);
}
.booking-contact a {
  width: max-content;
  border-bottom: 1px solid var(--ink);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.booking-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
}
.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}
.full {
  grid-column: 1 / -1;
}
.booking-form .button {
  justify-self: start;
  margin-top: 8px;
}
.form-note,
.day-display {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
#success-message {
  grid-column: 2;
  margin-top: -80px;
  padding: 18px 0;
  border-top: 1px solid var(--sage);
  color: #59604d;
  font-size: 0.83rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.75fr 0.55fr 1fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
  border-top: 1px solid var(--line);
}
.contact-details {
  display: grid;
  gap: 28px;
}
.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-details p {
  font-size: 0.9rem;
}
.contact-map {
  aspect-ratio: 1.45;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 22px;
  background-image:
    linear-gradient(rgba(20, 20, 18, 0.08), rgba(20, 20, 18, 0.08)),
    url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1000&q=80");
  filter: grayscale(1) contrast(0.85);
}
.contact-map span {
  background: var(--paper);
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 600;
}

.site-footer {
  padding: 80px clamp(24px, 6vw, 96px) 30px;
  background: var(--ink);
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  padding-bottom: 70px;
}
.footer-logo {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
}
.footer-main p {
  margin-top: 8px;
  color: rgba(251, 250, 247, 0.55);
  font-size: 0.75rem;
}
.footer-links,
.footer-socials {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 12px;
}
.footer-links a,
.footer-socials a {
  color: rgba(251, 250, 247, 0.7);
  font-size: 0.75rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 250, 247, 0.15);
  color: rgba(251, 250, 247, 0.45);
  font-size: 0.65rem;
}