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

/* ========================================= */
/* BASE SETTINGS */
/* ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: #f6f5ef;
  color: #1c1c1c;
  font-family: Arial, Helvetica, sans-serif;
}

::selection {
  background-color: #6f806e;
  color: #ffffff;
}

body.page-home,
body.page-about {
  background-color: #efefef;
}

section {
  position: relative;
}

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

h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.8;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

/* ========================================= */
/* SHARED LAYOUT */
/* ========================================= */

.container {
  width: min(100% - 5rem, 80rem);
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 5rem, 56rem);
  margin-inline: auto;
}

.container-medium {
  width: min(100% - 5rem, 64rem);
  margin-inline: auto;
}

.brand {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.brand a {
  display: inline-block;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 1rem 3rem;
  border-radius: 999px;
  background-color: #8d9b8c;
  color: #ffffff;
  font-size: 1.125rem;
  box-shadow: 0 12px 30px rgba(68, 82, 66, 0.18);
}

a.button-primary,
a.button-dark {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.button-primary:hover,
a.button-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background-color: #ffffff;
  color: #000000;
}

.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: #000000;
  color: #ffffff;
}

.section-light {
  padding-block: 7rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(141, 155, 140, 0.12), transparent 23rem),
    #efefef;
}

.section-warm {
  padding-block: 7rem;
  background:
    radial-gradient(circle at 92% 18%, rgba(179, 154, 119, 0.1), transparent 24rem),
    #f6f5ef;
}

.section-green {
  padding-block: 7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
    #d8ded6;
}

.section-center {
  text-align: center;
}

.section-title {
  margin-bottom: 2.5rem;
  font-size: 3rem;
}

.section-title-large {
  margin-bottom: 3rem;
  font-size: 3rem;
}

.section-intro {
  max-width: 48rem;
  margin: 0 auto 4rem;
  color: #4b5563;
}

.text-muted {
  color: #4b5563;
}

.text-soft {
  color: #e5e7eb;
}

.copy-stack {
  display: grid;
  gap: 2rem;
  color: #4b5563;
  font-size: 1.125rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: #66715f;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* HEADER AND NAVIGATION */
/* ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 45%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 45%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 100%
  );
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 5rem, 80rem);
  margin-inline: auto;
  padding-block: 1.5rem;
  color: #ffffff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  transition: color 0.35s ease, padding 0.35s ease, text-shadow 0.35s ease;
}

.page-contact .site-header:not(.site-header--scrolled) .site-header__inner {
  color: #1c1c1c;
  text-shadow: none;
}

.site-header--scrolled,
.site-header--menu-open {
  background-color: rgba(246, 245, 239, 0.92);
  box-shadow: 0 1px 0 rgba(28, 28, 28, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header--scrolled::before,
.site-header--menu-open::before {
  opacity: 0;
}

.site-header--scrolled .site-header__inner,
.site-header--menu-open .site-header__inner {
  padding-block: 0.85rem;
  color: #1c1c1c;
  text-shadow: none;
}

.site-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background-color: transparent;
  color: inherit;
  box-shadow: none;
}

.site-nav-toggle:hover {
  box-shadow: none;
  transform: none;
}

.site-nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin-inline: auto;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav-toggle span + span {
  margin-top: 0.27rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
}

.site-nav a:not(.button-light):hover {
  text-decoration: underline;
}

.site-nav__dropdown {
  position: relative;
  padding-block: 0.75rem;
}

.site-nav__dropdown-label {
  padding: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.site-nav__dropdown-label:hover,
.site-nav__dropdown-label:focus-visible {
  box-shadow: none;
  transform: none;
  text-decoration: underline;
}

.site-nav__dropdown-label:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.35rem;
}

.site-nav__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 12rem;
  padding: 0.6rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #1c1c1c;
  text-shadow: none;
}

.site-nav__menu a {
  padding: 0.7rem 0.85rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.site-nav__menu a:hover {
  background-color: #f6f5ef;
  text-decoration: none;
}

.site-nav__dropdown:hover .site-nav__menu,
.site-nav__dropdown:focus-within .site-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* ========================================= */
/* HOME HERO */
/* ========================================= */

.home-hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.home-hero__background {
  position: absolute;
  inset: 0;
  background-color: #9ca3af;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
  transform: scale(1);
}

.home-hero__panel {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin-left: 4rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    rgba(5, 12, 8, 0.5);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.home-hero__title {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 300;
}

.home-hero__text {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-hero__tabs-wrap {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.home-hero__tabs {
  display: flex;
  gap: 2.5rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  backdrop-filter: blur(12px);
}

.hero-tab {
  position: relative;
  min-height: 2.75rem;
  padding: 0.65rem 0 0.45rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.hero-tab:hover,
.hero-tab:focus-visible {
  box-shadow: none;
  transform: none;
}

.hero-tab:focus-visible {
  outline: 2px solid #1c1c1c;
  outline-offset: 0.2rem;
}

.hero-tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
}

.hero-zoom {
  animation: heroZoom 12s ease-in-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero-fade {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* HOME CONTENT */
/* ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  text-align: left;
}

.service-card {
  position: relative;
  display: block;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.14);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.service-card:hover {
  border-color: #66715f;
  transform: translateY(-8px);
}

.service-card__image {
  position: relative;
  height: 16rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background-color: #d1d5db;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(28, 28, 28, 0.1);
  transition: filter 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.service-card__image--kitchen {
  background-image: url("photos/index/Bespoke Kitchen.jpg");
}

.service-card__image--wardrobe {
  background-image: url("photos/index/Fitted Wardrobe.jpg");
}

.service-card__image--office {
  background-image: url("photos/index/Office Space.jpg");
}

.service-card__image--living {
  background-image: url("photos/index/Living and Loft Spaces.jpg");
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.service-card p {
  color: #4b5563;
  font-size: 0.875rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  color: #66715f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-services__cta {
  max-width: 50rem;
  margin: 4.5rem auto 0;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.14);
  text-align: center;
}

.home-services__cta p {
  margin: 0 auto 2rem;
  color: #4b5563;
}

.split-showcase {
  min-height: 100vh;
  overflow: hidden;
}

.split-section {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transition: opacity 0.5s ease;
}

.split-section--hidden {
  opacity: 0;
  pointer-events: none;
}

.split-section--white {
  background-color: #ffffff;
}

.split-section--warm {
  background-color: #efefef;
}

.split-section__content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5rem;
}

.split-section__copy {
  display: flex;
  max-width: 28rem;
  flex-direction: column;
  justify-content: center;
}

.split-section__copy h2 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.split-section__copy p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.split-section__media {
  position: relative;
  overflow: hidden;
  background-color: #d1d5db;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.split-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__media--bespoke {
  background-image: url("photos/index/bespoke-design.jpg");
}

/* ========================================= */
/* SERVICE PAGES */
/* ========================================= */

.service-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

.service-hero__media,
.service-hero__overlay {
  position: absolute;
  inset: 0;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.service-hero:hover .service-hero__media img {
  transform: scale(1.08);
}

.service-hero__overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.service-hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  color: #ffffff;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-hero__title {
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.75rem, 7vw, 4.5rem);
  line-height: 1;
}

.service-hero__text {
  color: #e5e7eb;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.6;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f6f5ef;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.feature-card__image {
  height: 20rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #d1d5db;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: #4b5563;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  font-size: 1.125rem;
}

.process-item h3 {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.process-item:hover h3 {
  transform: translateY(-4px);
}

.process-item p {
  color: #374151;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: center;
}

.editorial-split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial-media {
  min-height: 34rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #d1d5db;
  box-shadow: 0 28px 60px rgba(28, 28, 28, 0.12);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.detail-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.14);
  color: #374151;
  line-height: 1.7;
}

.detail-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1c1c1c;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.category-tile {
  position: relative;
  min-height: 13rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(141, 155, 140, 0.12);
  transition: transform 0.4s ease;
}

.category-tile:hover {
  box-shadow: 0 18px 40px rgba(28, 28, 28, 0.09);
  transform: translateY(-7px);
}

.category-tile:hover::after {
  transform: scale(1.5);
}

.category-tile h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.category-tile p {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.9375rem;
}

.numbered-steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: service-step;
}

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

.numbered-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.numbered-step > div {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.12);
}

.numbered-step::before {
  counter-increment: service-step;
  content: counter(service-step, decimal-leading-zero);
  color: #66715f;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.numbered-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.numbered-step p {
  margin-bottom: 0;
  color: #4b5563;
}

.statement-band {
  padding-block: 6rem;
  background-color: #1c1c1c;
  color: #ffffff;
  text-align: center;
}

.statement-band p {
  max-width: 58rem;
  margin: 0 auto;
  color: #e5e7eb;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}

.compact-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.compact-panel {
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  border: 1px solid rgba(28, 28, 28, 0.06);
  box-shadow: 0 16px 36px rgba(28, 28, 28, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.compact-panel:hover {
  box-shadow: 0 22px 48px rgba(28, 28, 28, 0.1);
  transform: translateY(-6px);
}

.compact-panel h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.compact-panel ul {
  display: grid;
  gap: 0.75rem;
  color: #4b5563;
}

.compact-panel li {
  line-height: 1.6;
}

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

.about-new-hero {
  display: flex;
  align-items: flex-end;
  min-height: 90vh;
  overflow: hidden;
  padding-block: 10rem 6rem;
}

.about-new-hero__media,
.about-new-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-new-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-new-hero__overlay {
  background: linear-gradient(90deg, rgba(8, 10, 8, 0.78), rgba(8, 10, 8, 0.18) 70%);
}

.about-new-hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.about-new-hero h2 {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.88;
}

.about-new-hero__content > p:last-child {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.about-label {
  margin-bottom: 1.25rem;
  color: #686868;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.about-story {
  padding-block: 8rem;
  background-color: #efefef;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 7rem;
  align-items: start;
}

.about-story h2,
.about-services h2,
.about-process h2,
.about-workshop h2,
.about-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.about-story__copy {
  display: grid;
  gap: 1.75rem;
  padding-top: 2rem;
  color: #4b5563;
  font-size: 1.1rem;
}

.about-story__copy p {
  margin-bottom: 0;
}

.about-services {
  padding-block: 8rem;
  background-color: #e7e3da;
}

.about-services__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1rem 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.about-services__heading .about-label {
  grid-column: 1 / -1;
}

.about-services__heading h2 {
  margin-bottom: 0;
}

.about-services__heading > p:last-child {
  max-width: 31rem;
  margin: 0;
  color: #4b5563;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.about-service-card {
  min-height: 18rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.55);
}

.about-service-card > span,
.about-process__step > span {
  display: block;
  margin-bottom: 4rem;
  color: #686868;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.about-service-card h3,
.about-process__step h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
}

.about-service-card p {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.94rem;
}

.about-process {
  padding-block: 8rem;
  background-color: #191b19;
  color: #ffffff;
}

.about-process h2 {
  max-width: 48rem;
  margin-bottom: 5rem;
}

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.about-process__step {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.about-process__step > span {
  color: rgba(255, 255, 255, 0.48);
}

.about-process__step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.about-workshop {
  padding-block: 8rem;
  background-color: #f4f2ed;
}

.about-workshop__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 6rem;
  align-items: center;
}

.about-workshop__media {
  min-height: 36rem;
  padding: 1rem;
  overflow: hidden;
  background-color: #e7e3da;
}

.about-workshop__media img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
}

.about-workshop__copy > p:not(.about-label) {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.about-workshop__copy .button-primary {
  margin-top: 1rem;
}

.about-cta {
  padding-block: 7rem;
  background-color: #8c8375;
  color: #ffffff;
  text-align: center;
}

.about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-cta h2 {
  margin-bottom: 1.5rem;
}

.about-cta p {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .about-story__grid,
  .about-workshop__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-services__heading {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
  }

  .about-services__grid,
  .about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-new-hero {
    min-height: 82svh;
    padding-block: 8rem 4rem;
  }

  .about-new-hero h2 {
    font-size: 3.6rem;
  }

  .about-story,
  .about-services,
  .about-process,
  .about-workshop,
  .about-cta {
    padding-block: 4.5rem;
  }

  .about-services__grid,
  .about-process__grid {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: auto;
  }

  .about-service-card > span,
  .about-process__step > span {
    margin-bottom: 2rem;
  }

  .about-workshop__media,
  .about-workshop__media img {
    min-height: 22rem;
    height: 22rem;
  }

  .about-workshop__media {
    height: auto;
    padding: 0.65rem;
  }
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.site-footer {
  padding-block: 5rem;
  background-color: #000000;
  color: #ffffff;
}

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

.site-footer__tagline,
.site-footer__links {
  color: #9ca3af;
  font-size: 0.875rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
}

.site-footer__links {
  display: grid;
  gap: 0.5rem;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
}

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

.page-contact {
  background-color: #efefef;
}

.contact-hero {
  padding: 12rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.7), transparent 21rem),
    linear-gradient(135deg, #d8ded6, #e8e4d9);
}

.contact-hero::after {
  content: "R";
  position: absolute;
  right: 2vw;
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14rem, 36vw, 34rem);
  line-height: 0.75;
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.contact-hero h2 {
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.contact-hero__text {
  max-width: 46rem;
  color: #374151;
  font-size: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: block;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  color: #1c1c1c;
  font-style: normal;
  line-height: 1.7;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a.contact-method:hover {
  border-color: rgba(102, 113, 95, 0.25);
  box-shadow: 0 16px 34px rgba(28, 28, 28, 0.08);
  transform: translateY(-4px);
}

.contact-method span {
  display: block;
  margin-bottom: 0.25rem;
  color: #66715f;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
}

.contact-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.contact-form__notice {
  margin: -0.25rem 0 0.5rem;
  padding: 1rem;
  border-left: 3px solid #8c8375;
  background-color: #f6f5ef;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form__notice a {
  color: #1c1c1c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-form__status {
  min-height: 1.5rem;
  margin: 0;
  color: #4b5563;
  font-size: 0.875rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  background-color: #f6f5ef;
  color: #1c1c1c;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-radius: 0.75rem;
  background-color: #f6f5ef;
}

.contact-options legend {
  padding-inline: 0.35rem;
  color: #374151;
  font-size: 0.9375rem;
}

.contact-options label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.contact-options input {
  width: auto;
  accent-color: #66715f;
}

@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid rgba(28, 28, 28, 0.1);
    border-radius: 0.9rem;
    background-color: rgba(246, 245, 239, 0.98);
    color: #1c1c1c;
    font-size: 1rem;
    text-shadow: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header--menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .site-nav__dropdown > .site-nav__dropdown-label {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  }

  .site-nav a:not(.button-light):hover {
    text-decoration: none;
  }

  .site-nav__dropdown {
    padding-block: 0;
  }

  .site-nav__menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0.25rem 0 0.65rem 1rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__menu a {
    min-height: 2.5rem;
    padding: 0.55rem 1rem;
    color: #4b5563;
    white-space: normal;
  }

  .site-nav__dropdown-label:hover,
  .site-nav__dropdown-label:focus-visible {
    text-decoration: none;
  }

  .site-nav .button-light {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.9rem 1rem;
    background-color: #1c1c1c;
    color: #ffffff;
  }

  .site-header--menu-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(0.34rem) rotate(45deg);
  }

  .site-header--menu-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header--menu-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-0.34rem) rotate(-45deg);
  }

  .split-showcase {
    min-height: auto;
    overflow: visible;
  }

  .split-section,
  .split-section--hidden {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    opacity: 1;
    pointer-events: auto;
  }

  .split-showcase .split-section__content {
    order: 1;
    min-height: auto;
    padding: 4rem 1.5rem;
  }

  .split-showcase .split-section__media {
    order: 2;
    min-height: 60svh;
    cursor: default;
  }
}

/* ========================================= */
/* RESPONSIVE REFINEMENTS */
/* ========================================= */

@media (max-width: 900px) {
  .container,
  .container-narrow,
  .container-medium,
  .site-header__inner {
    width: min(100% - 2rem, 80rem);
  }

  .site-header__inner {
    padding-block: 1rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .home-hero__panel {
    margin: 0 1rem;
  }

  .home-hero__tabs {
    max-width: calc(100% - 2rem);
    overflow-x: auto;
    gap: 1.25rem;
  }

  .services-grid,
  .feature-grid,
  .process-grid,
  .process-steps,
  .editorial-split,
  .editorial-split--reverse,
  .category-grid,
  .compact-list-grid,
  .contact-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .editorial-media,
  .editorial-media img {
    min-height: 24rem;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__media {
    min-height: 50vh;
  }

  .split-section__content {
    padding: 2rem;
  }

  .section-title,
  .section-title-large {
    font-size: 2.25rem;
  }
}

@media (min-width: 1600px) {
  .container,
  .site-header__inner {
    width: min(100% - 7rem, 96rem);
  }

  .site-header__inner {
    padding-block: 2rem;
  }

  .brand {
    font-size: 2.15rem;
  }

  .site-nav {
    gap: 2.5rem;
    font-size: 1rem;
  }

  .button-light {
    padding: 0.875rem 1.875rem;
    font-size: 1rem;
  }

  .home-hero__panel {
    max-width: 52rem;
    margin-left: 5.25rem;
    padding: 3.25rem;
    border-radius: 1.75rem;
  }

  .home-hero__title {
    margin-bottom: 1.25rem;
    font-size: 3rem;
  }

  .home-hero__text {
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }

  .home-hero__tabs-wrap {
    bottom: 3.25rem;
  }

  .home-hero__tabs {
    gap: 3rem;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
  }
}

/* ========================================= */
/* GALLERY AND TRADE PAGES */
/* ========================================= */

.page-gallery,
.page-trade {
  background-color: #efefef;
}

.subpage-hero {
  display: flex;
  min-height: 86svh;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.subpage-hero__media,
.subpage-hero__overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero__media {
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
}

.subpage-hero--gallery .subpage-hero__media {
  background-image: url("photos/index/bespoke-design.jpg");
}

.subpage-hero--trade .subpage-hero__media {
  background-image: url("photos/about/Workshop and Van Fitted Furniture.jpg");
  background-position: center 46%;
}

.subpage-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 10, 0.82), rgba(7, 14, 10, 0.22) 68%, rgba(7, 14, 10, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 52%);
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  padding-block: 12rem 8rem;
}

.subpage-hero__content h2 {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.96;
}

.subpage-hero__content > p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

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

.trade-intro,
.trade-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 6rem;
  align-items: start;
}

.trade-intro .section-title,
.trade-scope-grid .section-title {
  margin-bottom: 0;
}

.trade-heading {
  max-width: 58rem;
  margin-bottom: 3.5rem;
}

.trade-heading .section-title {
  margin-bottom: 1.25rem;
}

.trade-heading__intro {
  margin: 0;
}

.trade-partner-grid,
.trade-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.trade-partner-card,
.trade-route-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  padding: 2.25rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(28, 28, 28, 0.06);
}

.trade-partner-card > span {
  margin-bottom: auto;
  color: #8d9b8c;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
}

.trade-partner-card h3,
.trade-route-card h3,
.trade-scope-list h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.trade-partner-card p,
.trade-route-card p,
.trade-scope-list p,
.trade-scope-intro {
  margin-bottom: 0;
  color: #4b5563;
}

.trade-scope-intro {
  max-width: 32rem;
}

.trade-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(28, 28, 28, 0.16);
}

.trade-scope-list article {
  min-height: 14rem;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.16);
}

.trade-scope-list article:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid rgba(28, 28, 28, 0.16);
}

.trade-route-card {
  min-height: 24rem;
  background-color: #ffffff;
}

.trade-route-card__label {
  margin-bottom: 2.5rem !important;
  color: #66715f !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-route-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.12);
  color: #66715f;
  font-weight: 700;
}

.trade-route-card__link span {
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

.trade-route-card__link:hover span {
  transform: translateX(0.35rem);
}

.trade-brief {
  padding-block: 7rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08), transparent 22rem),
    #17221b;
  color: #ffffff;
}

.trade-brief__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.trade-brief h2 {
  max-width: 26rem;
  font-size: 3rem;
}

.trade-brief ul {
  display: grid;
  gap: 0.85rem;
}

.trade-brief li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.trade-brief li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background-color: #aebbaa;
}

.trade-brief__cta p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-note {
  padding-block: 7rem;
  background-color: #f6f5ef;
}

.gallery-note__grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.gallery-note h2 {
  max-width: 42rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.gallery-note__copy p {
  color: #4b5563;
}

.gallery-note__copy .button-primary {
  margin-top: 1rem;
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.gallery-toolbar .section-title {
  margin-bottom: 0;
}

.gallery-select-wrap {
  min-width: min(100%, 20rem);
}

.gallery-select-wrap label {
  display: block;
  margin-bottom: 0.55rem;
  color: #4b5563;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-select-wrap select {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 3rem 0.85rem 1rem;
  border: 1px solid rgba(28, 28, 28, 0.22);
  border-radius: 0.65rem;
  background-color: #ffffff;
  color: #1c1c1c;
  font: inherit;
}

.gallery-count {
  min-height: 1.5rem;
  margin: 0.6rem 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.gallery-project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 1rem 3rem rgba(28, 28, 28, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-project-card:hover {
  border-color: rgba(83, 98, 83, 0.38);
  box-shadow: 0 1.25rem 3rem rgba(28, 28, 28, 0.09);
  transform: translateY(-0.25rem);
}

.gallery-project-card__button {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background-color: #d8ded6;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  font: inherit;
  text-align: left;
}

.gallery-project-card__button:focus-visible {
  outline: 3px solid #536253;
  outline-offset: -3px;
}

.gallery-project-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #d8ded6;
}

.gallery-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.gallery-project-card:hover .gallery-project-card__media img,
.gallery-project-card__button:focus-visible .gallery-project-card__media img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.gallery-project-card__badge {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background-color: rgba(28, 28, 28, 0.76);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.gallery-project-card__copy {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background-color: #ffffff;
  flex: 1;
  flex-direction: column;
}

.gallery-project-card__category {
  display: block;
  margin-bottom: 0.6rem;
  color: #66715f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-project-card__title {
  display: block;
  margin-bottom: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
}

.gallery-project-card__description {
  display: -webkit-box;
  overflow: hidden;
  color: #59616a;
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.gallery-project-card__footer {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(28, 28, 28, 0.09);
  color: #405040;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-dialog {
  width: min(94vw, 82rem);
  max-width: none;
  max-height: 92svh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1rem;
  background-color: #f6f5ef;
  color: #1c1c1c;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.gallery-dialog::backdrop {
  background-color: rgba(19, 23, 19, 0.76);
  backdrop-filter: blur(5px);
}

.gallery-dialog__bar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 4.5rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  background-color: rgba(255, 255, 255, 0.96);
  align-items: center;
  justify-content: space-between;
}

.gallery-dialog__bar p {
  margin: 0;
  color: #66715f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-dialog__close {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(28, 28, 28, 0.16);
  border-radius: 50%;
  background-color: transparent;
  color: #1c1c1c;
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  place-items: center;
}

.gallery-dialog__close:hover,
.gallery-dialog__close:focus-visible {
  background-color: #536253;
  color: #ffffff;
}

.gallery-dialog__body {
  padding: clamp(1.25rem, 4vw, 3.5rem);
}

.gallery-dialog__intro {
  display: grid;
  margin-bottom: 3rem;
  gap: 2rem 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
}

.gallery-dialog__intro h2 {
  max-width: 46rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
}

.gallery-dialog__intro > div:last-child {
  align-self: end;
}

.gallery-dialog__intro > div:last-child > p:first-child {
  color: #4b5563;
  line-height: 1.7;
}

.gallery-dialog__count {
  margin: 1rem 0 0;
  color: #66715f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-dialog__images {
  columns: 3 18rem;
  column-gap: 1rem;
}

.gallery-dialog__image {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #d8ded6;
  break-inside: avoid;
}

.gallery-dialog__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-dialog__image:hover img {
  transform: scale(1.025);
}

.gallery-dialog__enquiry {
  display: flex;
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0.9rem;
  background-color: #e9ede5;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.gallery-dialog__enquiry h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

body.gallery-dialog-open {
  overflow: hidden;
}

.gallery-empty {
  padding: 5rem 2rem;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 1rem;
  background-color: #ffffff;
  text-align: center;
}

.gallery-empty p {
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: #4b5563;
}

.gallery-cta {
  padding-block: 7rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 20rem),
    #536253;
  color: #ffffff;
}

.gallery-cta__inner {
  max-width: 58rem;
  text-align: center;
}

.gallery-cta h2 {
  margin-bottom: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.gallery-cta p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1000px) {
  .trade-partner-grid,
  .trade-route-grid {
    grid-template-columns: 1fr;
  }

  .gallery-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trade-partner-card,
  .trade-route-card {
    min-height: auto;
  }

  .trade-partner-card > span {
    margin-bottom: 3rem;
  }

  .trade-brief__grid,
  .gallery-note__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trade-brief__grid > :first-child,
  .gallery-note__grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header .site-nav {
    max-height: calc(100svh - 6rem);
    overflow-y: auto;
  }

  .subpage-hero {
    min-height: 82svh;
  }

  .subpage-hero__content {
    padding-block: 10rem 5rem;
  }

  .subpage-hero__content h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .trade-intro,
  .trade-scope-grid,
  .trade-brief__grid,
  .gallery-note__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .trade-brief__grid > :first-child,
  .gallery-note__grid > :first-child {
    grid-column: auto;
  }

  .trade-scope-list {
    grid-template-columns: 1fr;
  }

  .trade-scope-list article,
  .trade-scope-list article:nth-child(even) {
    min-height: auto;
    padding: 1.5rem 0;
    border-left: 0;
  }

  .gallery-toolbar {
    display: grid;
    align-items: start;
    gap: 2rem;
  }

  .gallery-select-wrap {
    width: 100%;
  }

  .gallery-project-grid {
    grid-template-columns: 1fr;
  }

  .gallery-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
    border-radius: 0.75rem;
  }

  .gallery-dialog__bar {
    padding-inline: 1rem;
  }

  .gallery-dialog__intro {
    grid-template-columns: 1fr;
  }

  .gallery-dialog__enquiry {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.9375rem;
  }

  .container,
  .container-narrow,
  .container-medium,
  .site-header__inner {
    width: min(100% - 1.5rem, 80rem);
  }

  .site-header::before {
    height: 6.5rem;
  }

  .site-header__inner {
    padding-block: 0.875rem;
  }

  .brand {
    font-size: 1.35rem;
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }

  .button-light {
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .home-hero {
    align-items: flex-end;
    min-height: 100svh;
    padding-bottom: 7rem;
  }

  .home-hero__background {
    background-position: center;
  }

  .home-hero__panel {
    max-width: none;
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .home-hero__title {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1.1;
  }

  .home-hero__text {
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .home-hero__tabs-wrap {
    bottom: 1rem;
    justify-content: flex-start;
    padding-inline: 0.75rem;
  }

  .home-hero__tabs {
    width: 100%;
    max-width: none;
    gap: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    scrollbar-width: none;
  }

  .home-hero__tabs::-webkit-scrollbar {
    display: none;
  }

  .home-services__cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .home-services__cta .button-primary,
  .contact-form > .button-primary,
  .about-workshop__copy .button-primary,
  .about-cta .button-light {
    width: 100%;
  }

  .section-light,
  .section-warm,
  .section-green {
    padding-block: 4rem;
  }

  .section-title,
  .section-title-large {
    margin-bottom: 1.75rem;
    font-size: 2rem;
    line-height: 1.12;
  }

  .section-intro {
    margin-bottom: 2.5rem;
  }

  .services-grid,
  .feature-grid,
  .process-grid,
  .process-steps,
  .category-grid,
  .compact-list-grid,
  .contact-grid,
  .form-row-grid,
  .contact-options {
    gap: 1rem;
  }

  .form-row-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .service-card__image,
  .feature-card__image {
    height: 14rem;
  }

  .category-tile {
    min-height: auto;
    padding: 1.25rem;
  }

  .editorial-split,
  .editorial-split--reverse {
    gap: 2rem;
  }

  .editorial-media,
  .editorial-media img {
    min-height: 18rem;
  }

  .copy-stack {
    gap: 1.25rem;
    font-size: 1rem;
  }

  .service-hero {
    min-height: 80svh;
  }

  .service-hero__content {
    padding-inline: 1rem;
  }

  .service-hero__title {
    margin-bottom: 1.25rem;
    font-size: 3rem;
  }

  .service-hero__text {
    font-size: 1.0625rem;
  }

  .split-section__content {
    padding: 3.5rem 1.5rem;
  }

  .split-showcase .split-section__content {
    padding: 3.5rem 1.5rem;
  }

  .split-section__copy h2 {
    font-size: 2rem;
  }

  .statement-band {
    padding-block: 4rem;
  }

  .statement-band p {
    font-size: 2rem;
  }

  .contact-hero {
    padding: 8rem 0 4rem;
  }

  .contact-hero::after {
    right: -1rem;
    font-size: 16rem;
  }

  .contact-hero h2 {
    font-size: 3.25rem;
  }

  .contact-hero__text {
    font-size: 1rem;
  }

  .contact-form,
  .contact-method,
  .compact-panel {
    padding: 1.25rem;
  }

  .site-footer {
    padding-block: 4rem;
  }

  .site-footer__grid {
    gap: 2rem;
  }

}

@media (hover: none) {
  button:hover,
  a.button-primary:hover,
  a.button-dark:hover,
  .service-card:hover,
  .service-card:hover .service-card__image,
  .category-tile:hover,
  .compact-panel:hover,
  .gallery-project-card:hover,
  .gallery-project-card:hover .gallery-project-card__media img {
    box-shadow: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    width: min(100% - 1rem, 80rem);
  }

  .brand {
    font-size: 1.2rem;
  }

  .button-light {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .home-hero__title {
    font-size: 1.75rem;
  }

  .home-hero__panel {
    padding: 1.25rem;
  }

  .home-hero__tabs {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .about-new-hero h2 {
    font-size: 3rem;
  }

  .service-hero__title,
  .contact-hero h2 {
    font-size: 2.65rem;
  }
}

/* ========================================= */
/* MOBILE USABILITY CORRECTIONS */
/* ========================================= */

@media (max-width: 720px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  #gallery-collection,
  #trade-routes,
  #contact-enquiry-form {
    scroll-margin-top: 5.5rem;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button {
    overflow-wrap: anywhere;
  }

  .button-primary,
  .button-light,
  .button-dark {
    max-width: 100%;
    min-height: 2.875rem;
    padding-inline: 1.25rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .site-header__inner {
    width: calc(100% - 1.25rem);
  }

  .site-header .site-nav {
    top: calc(100% + 0.25rem);
    width: 100%;
    max-height: calc(100dvh - 5rem);
    padding: 0.5rem;
    border-radius: 0.75rem;
    overscroll-behavior: contain;
  }

  .site-nav > a,
  .site-nav__dropdown > .site-nav__dropdown-label {
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 0.85rem;
  }

  .site-nav__dropdown > .site-nav__dropdown-label {
    justify-content: space-between;
  }

  .site-nav__dropdown > .site-nav__dropdown-label::after {
    content: "+";
    margin-left: 1rem;
    color: #66715f;
    font-size: 1.25rem;
    font-weight: 400;
  }

  .site-nav__dropdown--open > .site-nav__dropdown-label::after {
    content: "−";
  }

  .site-nav__menu {
    display: none;
    padding: 0.15rem 0 0.5rem 0.65rem;
  }

  .site-nav__dropdown--open .site-nav__menu {
    display: grid;
  }

  .site-nav__menu a {
    display: flex;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    align-items: center;
  }

  .site-nav .button-light {
    min-height: 3rem;
  }

  .section-light,
  .section-warm,
  .section-green,
  .gallery-note,
  .gallery-cta,
  .trade-brief {
    padding-block: 3.5rem;
  }

  .section-center {
    padding-inline: 1rem;
  }

  .section-title,
  .section-title-large {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .home-hero {
    min-height: 100svh;
    padding-bottom: 6.25rem;
  }

  .home-hero__panel {
    width: min(calc(100% - 1.25rem), 17rem);
    margin: 0 auto 0 0.625rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
      rgba(5, 12, 8, 0.38);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .home-hero__title {
    margin-bottom: 0.55rem;
    font-size: 1.25rem;
    line-height: 1.15;
  }

  .home-hero__text {
    display: -webkit-box;
    margin-bottom: 0.55rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-hero__panel .button-light {
    min-height: 2.25rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }

  .home-hero__tabs-wrap {
    bottom: 0.65rem;
    padding-inline: 0.625rem;
  }

  .home-hero__tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.3rem 0.5rem;
    border-radius: 0.75rem;
    overflow: visible;
    font-size: 0.68rem;
  }

  .hero-tab {
    min-height: 2.75rem;
    padding: 0.55rem 0.1rem 0.4rem;
    line-height: 1.15;
    white-space: normal;
  }

  .service-card__image,
  .feature-card__image {
    height: 13rem;
  }

  .editorial-media,
  .editorial-media img {
    min-height: 16rem;
    height: 16rem;
  }

  .split-showcase .split-section__media {
    min-height: 18rem;
  }

  .split-showcase .split-section__content,
  .split-section__content {
    padding: 3rem 1rem;
  }

  .service-hero {
    min-height: clamp(31rem, 78svh, 39rem);
    padding: 6.5rem 0 3rem;
  }

  .service-hero__title {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .service-hero__text {
    font-size: 1rem;
  }

  .about-new-hero {
    min-height: 36rem;
    padding-block: 7rem 3.5rem;
  }

  .about-new-hero h2 {
    font-size: clamp(2.55rem, 13vw, 3.25rem);
    line-height: 0.94;
  }

  .about-story,
  .about-services,
  .about-process,
  .about-workshop,
  .about-cta {
    padding-block: 3.5rem;
  }

  .about-story h2,
  .about-services h2,
  .about-process h2,
  .about-workshop h2,
  .about-cta h2 {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
  }

  .about-workshop__media,
  .about-workshop__media img {
    min-height: 18rem;
    height: 18rem;
  }

  .contact-hero {
    padding: 7rem 0 3.5rem;
  }

  .contact-hero h2 {
    font-size: clamp(2.5rem, 13vw, 3.1rem);
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 3rem;
    font-size: 1rem;
  }

  .subpage-hero {
    min-height: 0;
  }

  .subpage-hero__content {
    padding-block: 7.5rem 4rem;
  }

  .subpage-hero__content h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .subpage-hero__content > p:not(.eyebrow) {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  .trade-partner-card,
  .trade-route-card {
    padding: 1.4rem;
  }

  .trade-brief h2 {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
  }

  .gallery-note h2,
  .gallery-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .gallery-project-card__copy {
    padding: 1.25rem;
  }

  .gallery-project-card__title {
    font-size: 1.8rem;
  }

  .gallery-dialog {
    width: calc(100vw - 0.75rem);
    max-height: calc(100dvh - 0.75rem);
    margin: auto;
  }

  .gallery-dialog__bar {
    min-height: 3.75rem;
  }

  .gallery-dialog__body {
    padding: 1rem;
  }

  .gallery-dialog__intro {
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .gallery-dialog__intro h2 {
    font-size: clamp(2.3rem, 11vw, 2.9rem);
    line-height: 1;
  }

  .gallery-dialog__images {
    columns: 1;
  }

  .gallery-dialog__image {
    margin-bottom: 0.75rem;
  }

  .gallery-dialog__image:hover img {
    transform: none;
  }

  .gallery-dialog__enquiry {
    margin-top: 1.5rem;
    padding: 1.25rem;
  }

  .gallery-dialog__enquiry .button-primary {
    width: 100%;
  }

  .site-footer {
    padding-block: 3.5rem;
  }

  .site-footer__grid {
    gap: 1.5rem;
  }

  .site-footer__links a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .container,
  .container-narrow,
  .container-medium,
  .site-header__inner {
    width: calc(100% - 1rem);
  }

  .home-hero__panel {
    width: min(calc(100% - 1rem), 16rem);
    margin-left: 0.5rem;
    padding: 0.7rem 0.8rem;
  }

  .home-hero__tabs {
    font-size: 0.64rem;
  }

  .subpage-hero__content h2 {
    font-size: 2.4rem;
  }
}
