:root {
  --ink: #141111;
  --paper: #f4f0ea;
  --paper-deep: #e7ded3;
  --smoke: #2a2624;
  --clay: #9f7965;
  --steel: #7c8b9a;
  --blue: #1f5d82;
  --line: rgba(20, 17, 17, 0.15);
  --white: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 17, 17, 0.42), rgba(20, 17, 17, 0));
}

.brand {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}

.logo-brand {
  width: clamp(168px, 19vw, 248px);
  height: 62px;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
}

.logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  color: var(--clay);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-image {
  min-height: 100svh;
}

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

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 18vh clamp(26px, 5vw, 72px) 10vh;
  transform: translateY(-5vh);
  background:
    linear-gradient(90deg, rgba(20, 17, 17, 0.18), rgba(20, 17, 17, 0.94) 28%),
    var(--ink);
}

.hero-logo {
  width: clamp(230px, 24vw, 340px);
  margin: 0 0 28px;
  filter: brightness(0) invert(1) drop-shadow(0 18px 42px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.4rem, 9vw, 8.6rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 5.5rem);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 243, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

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

.scroll-cue {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: 28px;
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

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

.intro-band p {
  margin: 0;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 3rem);
  text-align: center;
}

.shop-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  min-height: 620px;
  background: var(--ink);
  color: var(--white);
}

.shop-teaser-image {
  min-height: 620px;
  overflow: hidden;
}

.shop-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.shop-teaser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(64px, 10vw, 150px) clamp(28px, 8vw, 120px);
}

.shop-teaser-copy h2 {
  max-width: 760px;
  margin: 14px 0 24px;
}

.shop-teaser-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 250, 243, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.shop-page {
  background: #f4f0ea;
}

.shop-hero {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  background: var(--ink);
  color: var(--white);
}

.shop-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(130px, 15vw, 230px) clamp(28px, 8vw, 120px) 90px;
}

.shop-hero h1 {
  margin: 14px 0 28px;
}

.shop-hero p:last-child {
  max-width: 620px;
  color: rgba(255, 250, 243, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.shop-hero > img {
  width: 100%;
  height: 82svh;
  object-fit: cover;
  object-position: center 18%;
}

.shop-section {
  padding: clamp(80px, 10vw, 150px) clamp(18px, 4vw, 54px);
}

.shop-grid {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
}

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

.shop-card {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.shop-card > img {
  width: 100%;
  height: min(62vw, 720px);
  object-fit: cover;
  object-position: center 18%;
}

.shop-card > div {
  padding: clamp(28px, 4vw, 54px);
}

.shop-card h3,
.shop-product-card h3 {
  margin: 10px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.shop-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.7;
}

.shop-mugs {
  background: var(--white);
}

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

.shop-product-card {
  padding: 14px 14px 26px;
  background: #f4f0ea;
}

.shop-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.shop-product-card h3 {
  margin: 22px 10px 0;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
}

.shop-all-button {
  margin-top: 42px;
}

.shop-live {
  padding-top: clamp(70px, 8vw, 120px);
  background: var(--white);
}

.shop-live .section-heading {
  margin-bottom: 36px;
}

.shop-live .section-heading h2 {
  margin-bottom: 14px;
}

.shop-live .section-heading p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.spreadshop-embed {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(18, 16, 15, 0.1);
}

.spreadshop-frame {
  display: block;
  width: 100%;
  height: max(1050px, 145svh);
  border: 0;
  background: #fff;
}

.spreadshop-fallback {
  margin: 0;
  padding: 14px 18px;
  color: #5e5550;
  font-size: 0.86rem;
  text-align: center;
  background: #f4f0ea;
}

.spreadshop-fallback a {
  color: #8f2027;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 54px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 52px;
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.gallery-item {
  position: relative;
  min-height: 360px;
  padding: 0;
  border: 0;
  background: var(--smoke);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 740px;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(42px, 7vw, 100px);
  background: var(--smoke);
  color: var(--white);
}

.about-copy p:last-child {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-stats {
  display: grid;
  align-content: end;
  gap: 18px;
}

.about-stats div {
  border-top: 1px solid rgba(255, 250, 243, 0.2);
  padding-top: 18px;
}

.about-stats span {
  color: var(--steel);
  font-weight: 800;
}

.about-stats p {
  margin: 10px 0 0;
  color: rgba(255, 250, 243, 0.8);
  line-height: 1.5;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background: var(--paper-deep);
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 46px);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.contact-panel a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.contact-panel p {
  margin: 0;
  color: rgba(20, 17, 17, 0.62);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-hero {
  min-height: 62svh;
  display: grid;
  align-content: end;
  padding: 18vh clamp(18px, 4vw, 54px) clamp(58px, 9vw, 110px);
  background:
    linear-gradient(90deg, rgba(20, 17, 17, 0.88), rgba(20, 17, 17, 0.54)),
    url("assets/photos/hero-silver.jpg") center 30% / cover;
  color: var(--white);
}

.page-hero p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.profile-layout {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  background: var(--smoke);
  color: var(--white);
}

.profile-image img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.profile-copy {
  display: grid;
  align-content: end;
  padding: 18vh clamp(28px, 6vw, 86px) 12vh;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 34px 0 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 1.08rem;
  line-height: 1.85;
}

.profile-points {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.profile-points p {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 243, 0.2);
  color: rgba(255, 250, 243, 0.8);
}

.profile-points span {
  color: var(--steel);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.booking-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 500px);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
  padding: 16vh clamp(18px, 4vw, 54px) 10vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 240, 234, 0.96), rgba(244, 240, 234, 0.78)),
    url("assets/photos/mono-editorial.jpg") right center / contain no-repeat;
}

.booking-page > div {
  min-width: 0;
  max-width: 780px;
}

.booking-page h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 6.2vw, 7.4rem);
}

.booking-page p:not(.eyebrow) {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(20, 17, 17, 0.66);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.contact-card a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.contact-card p {
  margin: 0;
  color: rgba(20, 17, 17, 0.64);
  line-height: 1.55;
}

.contact-card .small-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
}

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

.contact-form span {
  color: rgba(20, 17, 17, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 17, 17, 0.32);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(159, 121, 101, 0.32);
  outline-offset: 4px;
}

.form-button {
  width: fit-content;
  margin-top: 10px;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(20, 17, 17, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note a {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.legal-page {
  min-height: 100svh;
  padding: 18vh clamp(18px, 4vw, 54px) 10vh;
}

.legal-page section {
  max-width: 900px;
}

.legal-copy {
  margin-top: 44px;
  max-width: 760px;
  color: rgba(20, 17, 17, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-copy p {
  margin: 0 0 20px;
}

.lightbox {
  width: min(92vw, 980px);
  max-height: 92svh;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(12, 10, 10, 0.86);
}

.lightbox img {
  max-height: 92svh;
  width: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 243, 0.6);
  border-radius: 50%;
  background: rgba(20, 17, 17, 0.72);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .shop-hero {
    grid-template-columns: 1fr;
  }

  .shop-hero > img {
    height: 72svh;
  }

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

  .shop-teaser {
    grid-template-columns: 1fr;
  }

  .shop-teaser-image {
    min-height: 70svh;
  }

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

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

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 17, 17, 0.08), rgba(20, 17, 17, 0.86));
  }

  .hero-panel {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    align-content: end;
    padding-top: 32vh;
    transform: none;
    background: transparent;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

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

  .section-heading,
  .about,
  .booking,
  .profile-layout,
  .booking-page {
    grid-template-columns: 1fr;
  }

  .profile-image img {
    min-height: 56svh;
  }

  .profile-copy {
    padding-top: 72px;
  }

  .booking-page {
    background:
      linear-gradient(180deg, rgba(244, 240, 234, 0.94), rgba(244, 240, 234, 0.9)),
      url("assets/photos/mono-editorial.jpg") center top / cover no-repeat;
  }

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

  .gallery-item,
  .gallery-item.tall {
    min-height: 460px;
  }
}

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

  .nav-links {
    gap: 10px;
    font-size: 0.62rem;
  }

  .shop-teaser {
    min-height: 0;
  }

  .shop-teaser-image {
    min-height: 66svh;
  }

  .shop-teaser-copy {
    padding: 64px 22px;
  }

  .shop-hero > div {
    padding: 120px 22px 64px;
  }

  .shop-hero > img {
    height: 66svh;
  }

  .shop-grid-collections,
  .shop-grid-products {
    grid-template-columns: 1fr;
  }

  .shop-card > img {
    height: 70svh;
  }

  .brand {
    width: 38px;
    height: 38px;
  }

  .logo-brand {
    width: 142px;
    height: 50px;
  }

  .hero-logo {
    width: min(100%, 280px);
    margin-bottom: 24px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .intro-band p {
    padding: 18px 10px;
  }

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

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }

  .contact-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .form-button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
