:root {
  --ink: #171614;
  --muted: #66615b;
  --paper: #fffdf9;
  --linen: #f7f3ee;
  --blush: #f1dfe2;
  --blue: #123f68;
  --olive: #6f7755;
  --gold: #a98c59;
  --line: #dedbd4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid #d6d2ca;
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(330px, 54vw);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 78px);
  padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px) 28px;
  text-align: center;
  background: var(--paper);
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 920px;
}

.hero-logo {
  width: min(440px, 86vw);
  margin-bottom: 34px;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 400;
  line-height: 0.92;
}

.section-logo {
  width: min(310px, 78vw);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

h3 {
  font-size: 26px;
  font-weight: 400;
}

.hero p:not(.eyebrow),
.builder-copy p,
.section-heading p:not(.eyebrow),
.collection-card p,
.service-list p,
.inquiry p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-quote {
  width: min(720px, 100%);
  margin: clamp(28px, 5vw, 48px) 0 0;
  padding: clamp(24px, 4vw, 42px) 0 0;
  border-top: 1px solid var(--line);
}

.hero-quote p {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 74px);
  font-style: italic;
  line-height: 1.05;
}

.hero-quote cite {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button.secondary {
  background: var(--white);
}

.hero-image {
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dedbd4;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(23, 22, 20, 0.13);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.intro-band div {
  min-height: 118px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span,
.summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.intro-band span {
  color: rgba(255, 255, 255, 0.68);
}

.intro-band strong {
  font-size: 24px;
  font-weight: 400;
}

.section,
.services,
.portfolio,
.builder-section,
.inquiry,
.brand-statement {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.brand-statement {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 720px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-statement img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.collection-card,
.builder,
.summary,
.hero-image,
.portfolio-item {
  box-shadow: 0 18px 50px rgba(23, 22, 20, 0.08);
}

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

.collection-card div {
  padding: 22px;
}

.collection-card a {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.builder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background:
    linear-gradient(180deg, var(--white), var(--paper));
  border-top: 1px solid var(--line);
}

.builder-section.reverse {
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  background: var(--paper);
}

.builder-section.reverse .builder-copy {
  order: 2;
}

.builder-copy {
  position: sticky;
  top: 104px;
}

.builder-copy img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.builder-copy img.full-basket-photo {
  max-height: 680px;
  padding: 14px;
  background: var(--white);
  object-fit: contain;
}

.builder {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset,
.field-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.field-group > label,
.inquiry-form label {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: 15px Arial, sans-serif;
}

textarea {
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

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

.summary {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.budget-guide {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.budget-guide span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.budget-guide h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.budget-guide p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.budget-guide ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.budget-guide li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.budget-guide li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  content: "";
}

.summary span,
.summary p {
  color: rgba(255, 255, 255, 0.72);
}

.summary small {
  color: rgba(255, 255, 255, 0.58);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.summary strong {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.summary .button {
  margin-top: 8px;
  border-color: var(--white);
}

.services {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.services .eyebrow,
.services .service-list p {
  color: rgba(255, 255, 255, 0.68);
}

.services .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-list article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-list span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 320px;
  gap: 14px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  margin-bottom: 22px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 22, 20, 0.08);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.case-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.case-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 10px;
}

.case-photo {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--linen);
  cursor: zoom-in;
}

.case-photo.large {
  grid-row: span 2;
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-photo figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  background: rgba(255, 253, 249, 0.9);
  border-radius: 4px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-item {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  cursor: zoom-in;
}

.case-photo:focus-visible,
.portfolio-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item.featured {
  grid-row: span 2;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 3px;
  padding: 42px 18px 16px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(23, 22, 20, 0.78));
}

.portfolio-item figcaption span {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-item figcaption strong {
  font-size: 22px;
  font-weight: 400;
}

.catalog-lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: var(--white);
}

.catalog-lightbox::backdrop {
  background: rgba(23, 22, 20, 0.82);
}

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

.catalog-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  height: calc(100vh - 36px);
  max-height: 900px;
  margin: 0;
  padding: 18px 0;
}

.catalog-lightbox img {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.catalog-lightbox figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 20px 4px;
  text-align: center;
}

.catalog-lightbox figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-lightbox figcaption strong {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 400;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
}

.lightbox-nav {
  width: 44px;
  height: 72px;
  justify-self: center;
  overflow: hidden;
  border-radius: 999px;
  color: transparent;
}

.lightbox-nav::before {
  display: block;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav.prev::before {
  content: "<";
}

.lightbox-nav.next::before {
  content: ">";
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

footer img {
  width: 64px;
  border-radius: 50%;
}

footer p {
  margin: 0;
}

.footer-brand,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact {
  flex-wrap: wrap;
  justify-content: center;
  font-style: normal;
}

.footer-contact a,
footer > a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-contact a:hover,
footer > a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .builder-section,
  .builder-section.reverse,
  .inquiry,
  .brand-statement,
  .case-study {
    grid-template-columns: 1fr;
  }

  .builder-section.reverse .builder-copy {
    order: 0;
  }

  .builder-copy {
    position: static;
  }

  .intro-band,
  .collection-grid,
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  nav {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .intro-band,
  .collection-grid,
  .service-list,
  .split-fields,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-auto-rows: 360px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .case-photo.large {
    grid-row: auto;
  }

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

  .catalog-lightbox figure {
    height: calc(100vh - 36px);
    padding: 58px 0 16px;
  }

  .lightbox-nav {
    width: 38px;
    height: 58px;
  }

  .portfolio-item,
  .portfolio-item.featured,
  .portfolio-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    flex-direction: column;
  }
}
