:root {
  color-scheme: dark;
  --ink: #f3f0e8;
  --muted: #adafa8;
  --paper: #0b0d0c;
  --panel: #121513;
  --line: rgba(255, 255, 255, 0.14);
  --moss: #b7c98f;
  --moss-dark: #26301f;
  --button-surface: #171a18;
  --surface-strong: #121612;
  --surface-soft: #111412;
  --hint: #858a82;
  --footer-muted: #7f837d;
  --callout: #253021;
  --callout-copy: rgba(255, 255, 255, 0.7);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --ink: #171c18;
  --muted: #5d675f;
  --paper: #f3f5f0;
  --panel: #ffffff;
  --line: rgba(23, 28, 24, 0.16);
  --moss: #456331;
  --moss-dark: #dfe8d7;
  --button-surface: #ffffff;
  --surface-strong: #f8faf6;
  --surface-soft: #edf1ea;
  --hint: #687169;
  --footer-muted: #697269;
  --callout: #e1e9db;
  --callout-copy: #4f5b51;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: background-color 180ms ease, color 180ms ease;
}

body:has(dialog[open]),
body.filter-panel-open {
  overflow: hidden;
}

body.filter-panel-open::before {
  content: "";
  position: fixed;
  z-index: 20;
  inset: 0;
  background: rgba(3, 5, 4, 0.72);
  backdrop-filter: blur(5px);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  --moss: #b7c98f;
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  min-height: 11rem;
  padding-block: 1.25rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-controls {
  position: absolute;
  top: 1.25rem;
  left: 0;
  display: grid;
  gap: 0.5rem;
}

.header-control {
  width: fit-content;
  min-width: 6.7rem;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 6, 5, 0.34);
  color: white;
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.header-control:hover,
.header-control[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(38, 48, 31, 0.88);
}

.social-control {
  width: 2.85rem;
  min-width: 2.85rem;
  justify-content: center;
  padding-inline: 0;
  cursor: pointer;
}

.social-control--facebook:hover {
  border-color: #1877f2;
  background: #1877f2;
}

.social-control--instagram:hover {
  border-color: #c13584;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.header-control.social-control--facebook svg {
  fill: currentColor;
  stroke: none;
}

.social-control--instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.header-control svg,
.search-field svg,
.refine-button svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header nav {
  position: absolute;
  top: 1.25rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.theme-toggle,
.about-nav-link {
  min-height: 2.85rem;
  padding: 0.65rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(4, 6, 5, 0.34);
  color: white;
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.theme-toggle:hover,
.about-nav-link:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(38, 48, 31, 0.88);
}

.theme-toggle svg,
.about-nav-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-icon--moon {
  display: none;
}

html[data-theme="light"] .theme-icon--sun {
  display: none;
}

html[data-theme="light"] .theme-icon--moon {
  display: block;
}

.brand-lockup {
  width: min(56vw, 560px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: white;
  text-align: center;
}

.logo-placeholder {
  display: grid;
  width: 4.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.05), 0 8px 28px rgba(0, 0, 0, 0.22);
  color: white;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.instagram-handle {
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.instagram-handle:hover {
  color: var(--moss);
}

.brand-lockup p {
  max-width: 510px;
  margin: 0;
  padding: 0.48rem 0.8rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(3, 5, 4, 0.6);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--moss);
  font-weight: 700;
  text-decoration: none;
}

.shop-link--compact {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
}

.filter-panel {
  --ink: #f3f0e8;
  --muted: #adafa8;
  --line: rgba(255, 255, 255, 0.14);
  --moss: #b7c98f;
  --moss-dark: #26301f;
  position: absolute;
  z-index: 35;
  top: calc(100% + 0.75rem);
  left: 0;
  width: min(430px, calc(100vw - 3rem));
  max-height: calc(100svh - 9rem);
  padding: 1.25rem;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(14, 17, 15, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  color: var(--ink);
  text-align: left;
}

.filter-panel[hidden] {
  display: none;
}

.filter-panel__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.filter-panel__top h2 {
  font-size: 2.1rem;
  line-height: 1;
}

.filter-panel__close {
  width: 2.45rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
}

.search-field {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.search-field__input {
  min-height: 3rem;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 0.88rem;
}

.search-field input::placeholder {
  color: #70746f;
}

.filter-group {
  margin: 1.2rem 0 0;
  padding: 1.1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.filter-group legend {
  padding: 0 0.45rem 0 0;
  color: white;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-range,
.filter-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.date-range label,
.sort-control {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.date-range input,
.sort-control select {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #181c19;
  color: white;
  color-scheme: dark;
  font: inherit;
}

.sort-control {
  margin-top: 0.65rem;
}

.filter-option {
  min-height: 2.7rem;
  padding: 0.55rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.2;
}

.filter-option:has(input:checked) {
  border-color: #53614a;
  background: var(--moss-dark);
  color: white;
}

.filter-option input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--moss);
}

.colour-swatch {
  width: 0.78rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.colour-swatch--warm { background: #c58a48; }
.colour-swatch--green { background: #5e7645; }
.colour-swatch--blue { background: #59809d; }
.colour-swatch--neutral { background: #85857f; }

.filter-panel__footer {
  position: sticky;
  bottom: -1.25rem;
  margin: 1.25rem -1.25rem -1.25rem;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  background: #0e110f;
}

.clear-filters,
.view-results {
  min-height: 2.8rem;
  padding: 0.65rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.clear-filters {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.view-results {
  flex: 1;
  border: 1px solid var(--moss);
  background: var(--moss);
  color: #11140f;
  text-align: center;
  text-decoration: none;
}

.hero {
  --ink: #f3f0e8;
  --paper: #0b0d0c;
  --moss: #b7c98f;
  position: relative;
  min-height: min(820px, 88svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  background: url("assets/gallery/portrait-silverback.jpg") center 42% / cover no-repeat;
  transform: scale(1.015);
  animation: settle 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.83) 0%, rgba(3, 5, 4, 0.32) 56%, rgba(3, 5, 4, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 5, 4, 0.85) 0%, transparent 48%);
}

@keyframes settle {
  from { opacity: 0.55; transform: scale(1.06); }
}

.hero-content {
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding: 17rem 0 7rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7.7vw, 7.7rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero-copy {
  max-width: 560px;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: var(--paper);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.button--light {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--paper);
}

.hero-caption {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1440px) / 2));
  bottom: 2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.hero-caption span {
  margin-right: 0.55rem;
  color: var(--moss);
  font-weight: 800;
  text-transform: uppercase;
}

.featured-section {
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding: clamp(4.5rem, 7vw, 7rem) 0 1rem;
}

.section-heading--featured {
  margin-bottom: 2.2rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.room-scene {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background-color: #c8bba8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.room-scene::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at 50% 40%, transparent 48%, rgba(24, 18, 14, 0.18) 100%);
}

.room-scene--living {
  background-image: url("assets/rooms/living-room.jpg");
  background-position: center 52%;
}

.room-scene--family {
  background-image: url("assets/rooms/family-room-fireplace.jpg");
  background-position: center 48%;
}

.room-scene--dining {
  background-image: url("assets/rooms/dining-room.jpg");
  background-position: center 50%;
}

.art-frame {
  position: absolute;
  z-index: 4;
  top: 11%;
  left: 50%;
  width: 26%;
  aspect-ratio: 1;
  padding: 3.2%;
  overflow: hidden;
  border: clamp(3px, 0.45vw, 7px) solid #342b25;
  background: #eee9df;
  box-shadow:
    0 18px 28px rgba(31, 22, 17, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 1px rgba(50, 40, 32, 0.12);
  cursor: pointer;
  transform: translateX(-50%);
}

.art-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28% 100%);
}

.art-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(40, 32, 27, 0.18);
  transition: transform 350ms ease, filter 350ms ease;
}

.art-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.room-scene--family .art-frame {
  top: 6%;
  width: 24%;
  border-color: #3b3029;
}

.room-scene--dining .art-frame {
  top: 10%;
  width: 28%;
  border-color: #171815;
}

.room-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
}

.room-copy .eyebrow {
  margin-bottom: 0.35rem;
}

.room-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
}

.text-button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--moss);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.featured-shop-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding-top: 2rem;
}

.button--gallery {
  border-color: var(--line);
  background: var(--button-surface);
  color: var(--ink);
}

.button--gallery:hover {
  border-color: #647358;
  background: var(--moss-dark);
}

.photo-request {
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(183, 201, 143, 0.32);
  border-radius: 3px;
  background:
    linear-gradient(120deg, rgba(183, 201, 143, 0.12), transparent 48%),
    var(--surface-strong);
}

.photo-request__copy {
  max-width: 760px;
}

.photo-request__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.08;
}

.photo-request__copy > p:last-child {
  max-width: 700px;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.photo-request__action {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.button--request {
  min-width: 12rem;
  border-color: var(--moss);
  background: var(--moss);
  color: #11150f;
}

.button--request:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--request svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.photo-request__action p {
  margin: 0;
  color: var(--hint);
  font-size: 0.72rem;
  text-align: center;
}

.starting-prices {
  margin-top: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.6fr);
  gap: 1.5rem 3rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 201, 143, 0.1), transparent 28%),
    var(--surface-soft);
}

.starting-prices__heading h3 {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  min-width: 0;
  padding: 0.5rem 1rem;
  display: grid;
  gap: 0.35rem;
  border-left: 1px solid var(--line);
}

.price-list span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.price-list strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.price-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--footer-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
}

.gallery-section {
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: end;
}

.section-heading h2,
.store-callout h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-heading > p,
.store-callout p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-toolbar {
  min-height: 5rem;
  margin: 2.5rem 0 2rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#gallery-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.active-filters {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.active-filters:empty {
  display: none;
}

.active-filter-chip {
  min-height: 1.85rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid #485342;
  border-radius: 999px;
  background: var(--moss-dark);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
}

.active-filter-chip::after {
  content: " ×";
  color: var(--moss);
}

.refine-button {
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 750;
}

.refine-button:hover {
  border-color: #53614a;
  background: var(--moss-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.3vw, 1.15rem);
}

.photo-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(280px, 34vw, 520px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: var(--button-surface);
  color: white;
  cursor: zoom-in;
  text-align: left;
}

.photo-card.is-featured {
  grid-column: span 8;
}

.photo-card.is-wide {
  grid-column: span 8;
  min-height: clamp(260px, 31vw, 480px);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
  filter: brightness(0.78);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(2, 3, 2, 0.9));
  opacity: 0.75;
  pointer-events: none;
}

.card-copy {
  position: absolute;
  z-index: 1;
  right: 1.15rem;
  bottom: 1.1rem;
  left: 1.15rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.card-copy span:first-child {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.card-category {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans) !important;
  font-size: 0.66rem !important;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.expand-mark {
  display: grid;
  width: 2.3rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
}

.empty-state,
.noscript {
  grid-column: 1 / -1;
  padding: 4rem 1.5rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.store-callout {
  width: min(100% - 3rem, 1440px);
  margin: 0 auto 2rem;
  padding: clamp(2.2rem, 5vw, 5rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  border-radius: 4px;
  background:
    radial-gradient(circle at 90% 15%, rgba(186, 207, 135, 0.18), transparent 28%),
    var(--callout);
}

.store-callout h2 {
  max-width: 850px;
}

.store-callout p {
  margin-top: 1.25rem;
  color: var(--callout-copy);
}

footer {
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding: 1.5rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--footer-muted);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
}

.footer-links a {
  color: var(--muted);
  text-underline-offset: 0.25rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.lightbox {
  --ink: #f3f0e8;
  --muted: #adafa8;
  --line: rgba(255, 255, 255, 0.14);
  --moss: #b7c98f;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(5, 7, 6, 0.98);
  color: var(--ink);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 5rem;
  align-items: center;
}

.lightbox-figure {
  min-width: 0;
  height: 100svh;
  margin: 0;
  padding: 1.25rem 0 1rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
}

.lightbox-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  z-index: 1;
  max-width: 100%;
  max-height: calc(100svh - 9.5rem);
  object-fit: contain;
  opacity: 0;
  transition: opacity 220ms ease;
}

.lightbox-stage img.is-loaded {
  opacity: 1;
}

.image-loader {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--moss);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.lightbox-stage img.is-loaded + .image-loader {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lightbox figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.lightbox h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

#lightbox-detail {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.lightbox-meta {
  display: grid;
  justify-items: end;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.lightbox-meta a {
  color: var(--moss);
  font-weight: 750;
  text-decoration: none;
}

.icon-button {
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.icon-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: fixed;
  z-index: 5;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.7rem;
}

.lightbox-prev,
.lightbox-next {
  margin-inline: auto;
}

.about-hero {
  position: relative;
  min-height: min(800px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b0d0c;
  color: white;
}

.about-hero__image,
.about-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__image {
  object-fit: cover;
  object-position: 58% 42%;
  animation: settle 1.8s ease-out both;
}

.about-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.46) 49%, rgba(3, 5, 4, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 5, 4, 0.9) 0%, transparent 58%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
  padding: 18rem 0 6.5rem;
}

.about-hero__content h1 {
  max-width: 620px;
}

.about-hero__content > p:last-child {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.7;
}

.about-story,
.about-values,
.about-invitation {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.about-story {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.about-story__copy h2,
.about-values__heading h2,
.about-invitation h2 {
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 1;
  text-wrap: balance;
}

.about-story__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: start;
  gap: 1rem;
}

.about-photo-pair figure {
  margin: 0;
}

.about-photo-pair figure:nth-child(2) {
  margin-top: 4.5rem;
}

.about-photo-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--panel);
}

.about-photo-pair img.about-photo-pair__portrait {
  aspect-ratio: 967 / 1536;
  object-position: center top;
}

.about-photo-pair figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.about-values {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.about-values__heading {
  max-width: 900px;
}

.about-values__grid {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values__grid article {
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 2.2rem;
  border-left: 1px solid var(--line);
}

.about-values__grid article:first-child {
  border-left: 0;
}

.about-values__grid article > span {
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-values__grid h3 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 400;
}

.about-values__grid p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-invitation {
  margin-block: clamp(2rem, 5vw, 5rem) 2rem;
  padding: clamp(2.2rem, 5vw, 4.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 90% 15%, rgba(186, 207, 135, 0.18), transparent 28%),
    var(--callout);
}

.about-invitation p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.3rem 0 0;
  color: var(--callout-copy);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-invitation__actions {
  display: grid;
  justify-items: stretch;
  gap: 0.8rem;
}

.about-invitation__actions .text-button {
  text-align: center;
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--moss);
  background: var(--moss-dark);
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 2rem, 1440px);
  }

  .brand-lockup {
    width: min(58vw, 470px);
  }

  .hero-content,
  .featured-section,
  .gallery-section,
  .store-callout,
  .about-hero__content,
  .about-story,
  .about-values,
  .about-invitation,
  footer {
    width: min(100% - 2rem, 1440px);
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-photo-pair {
    width: min(100%, 700px);
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-values__grid article:first-child {
    border-top: 0;
  }

  .about-invitation {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-scene {
    aspect-ratio: 4 / 3;
  }

  .art-frame {
    top: 5%;
    width: 25%;
    padding: 2%;
  }

  .room-scene--family .art-frame {
    top: 4%;
    width: 22%;
  }

  .room-scene--dining .art-frame {
    top: 5%;
    width: 25%;
  }

  .photo-card,
  .photo-card.is-featured,
  .photo-card.is-wide {
    grid-column: span 6;
    min-height: clamp(280px, 64vw, 540px);
  }

  .store-callout {
    align-items: start;
    flex-direction: column;
  }

  .lightbox[open] {
    grid-template-columns: 3.6rem minmax(0, 1fr) 3.6rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 12rem;
  }

  .header-control {
    width: 2.85rem;
    min-width: 2.85rem;
    padding-inline: 0;
    justify-content: center;
  }

  .header-control span {
    display: none;
  }

  .brand-lockup {
    width: min(65vw, 260px);
    gap: 0.4rem;
  }

  .logo-placeholder {
    width: 3.75rem;
  }

  .instagram-handle {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .brand-lockup p {
    padding: 0.4rem 0.6rem 0.45rem;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .theme-toggle,
  .about-nav-link {
    width: 2.85rem;
    padding-inline: 0;
  }

  .theme-toggle span,
  .about-nav-link span {
    display: none;
  }

  .site-header nav {
    align-items: flex-end;
    flex-direction: column;
    gap: 0.45rem;
  }

  .shop-link--compact {
    width: 2.85rem;
    min-height: 2.85rem;
    justify-content: center;
    padding: 0;
    font-size: 0.9rem;
  }

  .shop-link__label {
    display: none;
  }

  .filter-panel {
    position: fixed;
    inset: 1rem 1rem auto;
    width: auto;
    max-height: calc(100svh - 2rem);
  }

  .hero {
    min-height: 860px;
  }

  .about-hero {
    min-height: 780px;
  }

  .about-hero__image {
    object-position: 62% center;
  }

  .about-hero__shade {
    background: linear-gradient(0deg, rgba(3, 5, 4, 0.96) 0%, rgba(3, 5, 4, 0.3) 78%);
  }

  .about-hero__content {
    padding: 18rem 0 4.5rem;
  }

  .about-hero__content h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

  .about-story {
    padding-block: 4.5rem;
  }

  .about-photo-pair {
    gap: 0.7rem;
  }

  .about-photo-pair figure:nth-child(2) {
    margin-top: 2.5rem;
  }

  .about-values__grid article {
    padding-inline: 0.35rem;
  }

  .hero-image {
    background-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 5, 4, 0.94) 0%, rgba(3, 5, 4, 0.2) 78%);
  }

  .hero-content {
    padding: 19rem 0 5rem;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-caption {
    display: none;
  }

  .gallery-section {
    padding-block: 4.5rem;
  }

  .featured-section {
    padding-top: 4rem;
  }

  .featured-shop-action {
    align-items: stretch;
    flex-direction: column;
  }

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

  .photo-request {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-request__action {
    justify-items: stretch;
  }

  .button--request {
    width: 100%;
  }

  .starting-prices {
    grid-template-columns: 1fr;
  }

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

  .price-list li {
    padding: 0.8rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .price-list li:last-child {
    grid-column: 1 / -1;
  }

  .price-note {
    text-align: left;
  }

  .gallery-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .refine-button {
    width: 100%;
  }

  .photo-card,
  .photo-card.is-featured,
  .photo-card.is-wide {
    grid-column: 1 / -1;
    min-height: 118vw;
    max-height: 620px;
  }

  .photo-card.is-wide {
    min-height: 75vw;
  }

  .store-callout {
    padding: 2rem 1.4rem;
  }

  footer {
    align-items: start;
    flex-direction: column;
  }

  .lightbox[open] {
    grid-template-columns: 1fr;
  }

  .lightbox-figure {
    padding: 4.8rem 1rem 1rem;
  }

  .lightbox-stage img {
    max-height: calc(100svh - 14rem);
  }

  .lightbox figcaption {
    align-items: start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .lightbox-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .lightbox-prev,
  .lightbox-next {
    position: fixed;
    z-index: 4;
    top: 50%;
    background: rgba(5, 7, 6, 0.7);
    backdrop-filter: blur(8px);
  }

  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
