:root {
  --ink: #1e1718;
  --muted: #755d64;
  --paper: #fffaf8;
  --white: #ffffff;
  --petal: #f5b9c7;
  --petal-soft: #fde8ee;
  --rose: #c86f86;
  --green: #123d2a;
  --moss: #7d8f45;
  --line: #ead5da;
  --shadow: 0 24px 70px rgba(50, 21, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: var(--white);
  background: var(--green);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 74px;
  padding: 0 4vw;
  background: rgba(255, 250, 248, 0.92);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.logo {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.logo-mark {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(14deg);
}

.logo-mark span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--petal);
  border: 1px solid var(--green);
  border-radius: 50% 50% 50% 0;
}

.logo-mark span:nth-child(1) {
  left: 0;
  top: 0;
}

.logo-mark span:nth-child(2) {
  right: 0;
  top: 0;
  transform: rotate(90deg);
}

.logo-mark span:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.logo-mark span:nth-child(4) {
  left: 0;
  bottom: 0;
  transform: rotate(270deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #2b2224;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  padding: 26px 0;
}

.main-nav a:hover {
  color: var(--rose);
}

.main-nav .is-active {
  color: var(--rose);
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.icon-button svg,
.socials svg,
.reservation-form button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--moss);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: clamp(520px, 70svh, 640px);
  background: var(--petal);
}

.hero-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 3vw 8vw 2.8vw;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 4.3rem;
  line-height: 0.96;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  line-height: 1.58;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button-dark {
  color: var(--white);
  background: var(--green);
}

.button-light {
  color: var(--green);
  background: var(--white);
  border-color: rgba(18, 61, 42, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 24px 0 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 14px;
}

.hero-stats dt {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-image {
  position: relative;
  min-height: clamp(520px, 70svh, 640px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 70svh, 640px);
  object-fit: cover;
  object-position: center;
}

.delivery-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4vw;
  color: var(--white);
  background: rgba(18, 61, 42, 0.82);
  backdrop-filter: blur(12px);
}

.delivery-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.ticker {
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--green);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker span {
  flex: 1 0 auto;
  padding: 18px 34px;
  border-right: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  text-align: center;
}

.section {
  padding: 82px 7vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.section-heading h2,
.comparison-intro h2,
.studio-copy h2,
.reservation-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.03;
}

.subpage-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: clamp(440px, 62svh, 620px);
  background: var(--petal);
}

.subpage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.8vw 5.5vw 4.4vw 7vw;
}

.subpage-copy h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.25rem, 5vw, 4.25rem);
  line-height: 0.96;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.58;
}

.catalog-hero {
  grid-template-columns: minmax(360px, 42%) 1fr;
  min-height: 0;
}

.catalog-hero .subpage-copy {
  padding-top: 32px;
  padding-bottom: 32px;
}

.catalog-hero .subpage-copy h1 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 3.25vw, 3.05rem);
  line-height: 0.98;
}

.catalog-hero .subpage-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.catalog-hero .hero-cta {
  margin-top: 2px;
}

.catalog-hero .button {
  min-height: 42px;
  padding: 0 19px;
}

.catalog-collage {
  position: relative;
  display: block;
  min-height: clamp(440px, 62svh, 620px);
  overflow: hidden;
}

.catalog-hero .catalog-collage {
  height: clamp(380px, 52svh, 500px);
  min-height: 0;
}

.catalog-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.reflection-panel {
  position: absolute;
  right: 4vw;
  bottom: 36px;
  display: grid;
  gap: 4px;
  min-width: 250px;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(18, 61, 42, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 50px rgba(18, 61, 42, 0.24);
  backdrop-filter: blur(18px);
}

.reflection-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.category-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px 7vw;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-band a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--green);
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  white-space: nowrap;
}

.category-band a:hover {
  background: var(--petal-soft);
}

.catalog-section {
  background: var(--paper);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.catalog-card {
  display: grid;
  background: var(--white);
  border-top: 2px solid transparent;
}

.catalog-card:hover {
  border-top-color: var(--rose);
  box-shadow: var(--shadow);
}

.catalog-image {
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #f8f3f1;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.catalog-card:hover img {
  transform: scale(1.035);
}

.catalog-info {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}

.catalog-info span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-info h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  font-weight: 500;
}

.catalog-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.catalog-info strong {
  margin-top: 6px;
  color: var(--green);
}

.availability {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1.28fr;
  gap: 46px;
  padding: 76px 7vw 88px;
  background: var(--green);
  color: var(--white);
}

.availability-copy .eyebrow {
  color: var(--petal);
}

.availability-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.03;
}

.availability-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.stem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.26);
  gap: 1px;
}

.stem-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--green);
}

.stem-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 500;
}

.stem-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
}

.product-card-featured {
  margin-top: -24px;
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #f8f3f1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 24px;
}

.product-info h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.product-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-info strong {
  color: var(--green);
  white-space: nowrap;
}

.studio-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 40px;
  padding: 72px 7vw;
  color: var(--white);
  background: var(--green);
}

.studio-copy .eyebrow,
.reservation-copy .eyebrow {
  color: var(--petal);
}

.studio-copy h2 {
  color: var(--white);
}

.studio-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.studio-options article {
  min-height: 230px;
  padding: 28px;
  background: var(--green);
}

.studio-options span {
  display: block;
  margin-bottom: 62px;
  color: var(--petal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.studio-options h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.studio-options p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.comparison {
  background: var(--petal-soft);
}

.comparison-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 42px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.comparison-intro p:last-child {
  max-width: 540px;
  margin: 0 0 6px auto;
  color: var(--muted);
  line-height: 1.7;
}

.comparison-table {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
  border-top: 2px solid var(--green);
}

.table-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr 0.8fr 0.55fr;
  border-bottom: 1px solid var(--line);
}

.table-row > div {
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  line-height: 1.45;
}

.table-row > div:last-child {
  border-right: 0;
}

.table-head {
  color: var(--green);
  background: #fbf5f2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.table-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.is-highlighted {
  background: #fffdfb;
  box-shadow: inset 6px 0 0 var(--rose);
}

.reservation {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 6vw;
  padding: 88px 7vw;
  color: var(--white);
  background: linear-gradient(90deg, var(--green) 0 45%, #2f1720 45% 100%);
}

.reservation-copy {
  align-self: center;
}

.reservation-copy h2 {
  max-width: 600px;
  color: var(--white);
}

.reservation-copy p {
  max-width: 510px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.reservation-note {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.reservation-note span {
  color: var(--petal);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}

.reservation-form textarea {
  min-height: 112px;
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 61, 42, 0.12);
}

.reservation-form .full {
  grid-column: 1 / -1;
}

.reservation-form button {
  gap: 10px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 38px 4vw;
  color: var(--white);
  background: #171112;
}

.footer-logo {
  margin-bottom: 12px;
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 6px;
}

.socials a {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

@media (min-width: 1101px) {
  .site-header {
    position: sticky;
  }

  .main-nav {
    position: absolute;
    left: 50%;
    top: 0;
    height: 74px;
    transform: translateX(-50%);
  }
}

.contact-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: clamp(440px, 62svh, 620px);
  background: var(--petal);
}

.contact-photo {
  min-height: clamp(440px, 62svh, 620px);
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 62svh, 620px);
  object-fit: cover;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.8vw 6vw 4.4vw;
}

.contact-hero-copy h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.2rem, 4.8vw, 4.15rem);
  line-height: 0.98;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.58;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.78fr) minmax(320px, 1.1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.contact-details,
.opening-hours,
.map-card {
  min-height: 430px;
  padding: 42px;
  background: var(--paper);
}

.contact-details h2 {
  max-width: 420px;
  margin-bottom: 32px;
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.04;
}

.contact-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-lines a {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-lines span,
.opening-hours dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lines strong {
  color: var(--green);
  font-size: 1.12rem;
}

.opening-hours {
  color: var(--white);
  background: var(--green);
}

.opening-hours h3 {
  margin-bottom: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.opening-hours dl {
  display: grid;
  gap: 1px;
  margin: 0 0 34px;
  background: rgba(255, 255, 255, 0.25);
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  background: var(--green);
}

.opening-hours dt {
  color: var(--petal);
}

.opening-hours dd {
  margin: 0;
  text-align: right;
}

.opening-hours p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.map-card {
  position: relative;
  overflow: hidden;
  background: #f8eee8;
}

.real-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.94);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(135deg, #f8eee8, #f4bdca);
}

.road {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(18, 61, 42, 0.08);
}

.road-main {
  left: -8%;
  top: 48%;
  width: 116%;
  height: 34px;
  transform: rotate(-12deg);
}

.road-side {
  left: 42%;
  top: -10%;
  width: 28px;
  height: 125%;
  transform: rotate(22deg);
}

.road-small {
  left: 12%;
  top: 68%;
  width: 92%;
  height: 22px;
  transform: rotate(22deg);
}

.park {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 34%;
  height: 26%;
  background: rgba(125, 143, 69, 0.2);
  border: 1px solid rgba(18, 61, 42, 0.1);
}

.pin {
  position: absolute;
  left: 53%;
  top: 43%;
  width: 26px;
  height: 26px;
  background: var(--green);
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 35px rgba(18, 61, 42, 0.28);
  transform: rotate(-45deg);
}

.map-label {
  position: absolute;
  left: 44%;
  top: 55%;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.map-label.secondary {
  left: 10%;
  top: 31%;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px;
  color: var(--white);
  background: rgba(18, 61, 42, 0.82);
  backdrop-filter: blur(14px);
}

.map-caption span {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    padding: 0;
    white-space: nowrap;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4rem;
  }

  .table-row {
    grid-template-columns: 1.1fr 1fr 1.1fr 0.8fr 0.55fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero,
  .subpage-hero,
  .contact-hero,
  .studio-strip,
  .comparison-intro,
  .availability,
  .reservation,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 440px;
  }

  .hero-image,
  .hero-image img {
    min-height: 360px;
  }

  .subpage-copy,
  .contact-hero-copy {
    min-height: 430px;
  }

  .catalog-collage,
  .contact-photo,
  .contact-photo img {
    min-height: 360px;
  }

  .catalog-hero .subpage-copy {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .catalog-hero .catalog-collage {
    height: 300px;
    min-height: 0;
  }

  .category-band,
  .catalog-grid,
  .stem-list,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .studio-options {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    margin-top: 0;
  }

  .reservation {
    background: var(--green);
  }

  .comparison-table {
    overflow-x: auto;
  }

  .table-row {
    min-width: 860px;
  }

  .footer {
    align-items: start;
  }

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 18px;
    min-height: 66px;
    padding: 14px 18px;
  }

  .logo {
    font-size: 1.65rem;
  }

  .icon-button {
    display: none;
  }

  .order-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  .subpage-copy h1,
  .contact-hero-copy h1 {
    font-size: 2.72rem;
  }

  .section-heading h2,
  .comparison-intro h2,
  .studio-copy h2,
  .reservation-copy h2,
  .availability-copy h2,
  .contact-details h2 {
    font-size: 2.25rem;
  }

  .hero-copy,
  .subpage-copy,
  .contact-hero-copy,
  .section,
  .studio-strip,
  .comparison,
  .availability,
  .reservation {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-stats,
  .category-band,
  .catalog-grid,
  .stem-list,
  .contact-layout,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 0 17px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats div {
    padding-top: 10px;
  }

  .hero-stats dt {
    font-size: 1.05rem;
  }

  .hero-stats dd {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .category-band a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .catalog-hero .catalog-collage {
    height: 270px;
  }

  .reflection-panel {
    right: 22px;
    bottom: 22px;
    left: 22px;
    min-width: 0;
  }

  .delivery-strip {
    display: grid;
    padding: 16px 22px;
  }

  .ticker span {
    padding: 15px 24px;
  }

  .product-info {
    display: grid;
  }

  .studio-options article {
    min-height: auto;
  }

  .studio-options span {
    margin-bottom: 34px;
  }

  .reservation-form {
    padding: 22px;
  }

  .contact-details,
  .opening-hours,
  .map-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .map-card {
    min-height: 420px;
  }

  .stem-list article {
    display: grid;
  }

  .stem-list span {
    text-align: left;
  }

  .footer {
    padding: 34px 22px;
  }
}
