
:root {
  --black: #FFFFFF;
  --cream: #1F2933;
  --gold: #D4A64A;
  --muted: #667085;
  --card: #FFFFFF;
  --background: #FFFFFF;
  --accent-rgb: 212, 166, 74;
  --body-text: #344054;
  --heading-text: #101828;
  --brand-name: #1F2933;
  --tagline: #667085;
  --heading-font: Garamond, Georgia, serif;
  --body-font: Arial, Arial, sans-serif;
  --brand-font: Belgium, Georgia, serif;
  --input-bg: #FFFFFF;
  --input-border: #D0D5DD;
  --input-focus: #D4A64A;
  --shadow-soft: 0 12px 32px rgba(16,24,40,.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--body-text);
  background:
    
    #FFFFFF
    ;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--background);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EAECF0;
  padding: 14px 7vw 12px;
}

.site-header.layout-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header.layout-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.layout-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.layout-left .brand {
  flex-direction: row;
  text-align: left;
  gap: 14px;
}

.brand img {
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.layout-left .brand img {
  margin-bottom: 0;
}

.brand strong {
  display: block;
  color: var(--brand-name);
  letter-spacing: .05em;
  font-family: var(--brand-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
}

.brand span {
  display: block;
  font-size: 1.4rem;
  color: var(--tagline);
  margin-top: 8px;
  font-family: var(--body-font);
  letter-spacing: .04em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 14px;
  font-family: var(--body-font);
  font-size: .95rem;
  color: var(--muted);
}

.layout-left .nav {
  margin-top: 0;
  justify-content: flex-end;
}

.layout-split .brand {
  grid-column: 2;
}

.layout-split .nav {
  grid-column: 1 / -1;
}

.nav a {
  padding: 6px 2px;
}

.nav a:hover {
  color: var(--gold);
}
.hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 42px 7vw 58px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .22em;
  font-size: .78rem;
  font-family: var(--body-font);
  font-weight: 700;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
  color: var(--heading-text);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--heading-text);
}
.hero-copy > .eyebrow { font-size: 1.25rem; }
.products-heading { font-size: clamp(1.8rem, 4vw, 3.5rem); }
.products-eyebrow { font-size: 1.25rem; }
.about-heading { font-size: clamp(1.8rem, 4vw, 3.5rem); }
.about-eyebrow { font-size: 1.25rem; }
.order-heading { font-size: clamp(1.8rem, 4vw, 3.5rem); }
.order-eyebrow { font-size: 1.25rem; }
.contact-heading { font-size: clamp(1.8rem, 4vw, 3.5rem); }
.contact-eyebrow { font-size: 1.25rem; }

.hero-copy p:not(.eyebrow) {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
}

.button {
  display: inline-block;
  background: #101828;
  color: #FFFFFF;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 999px;
  margin-top: 18px;
  font-family: var(--body-font);
  box-shadow: 0 18px 38px rgba(var(--accent-rgb), .22);
}

.hero-card {
  min-height: 360px;
  max-width: 620px;
  max-height: 420px;
  justify-self: center;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  border: 0px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 28px 45px -14px rgba(16,24,40,.42);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  
  background: transparent;
  
}
.hero-card img {
  width: 100%;
  max-width: 620px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: none;
  position: relative;
  z-index: 1;
}
.placeholder-bottle {
  width: 190px;
  height: 330px;
  border-radius: 36px 36px 80px 80px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2.2rem;
}

.shipping-strip {
  margin: 0 7vw;
  transform: translateY(-34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.shipping-method {
  padding: 28px;
  border-right: 1px solid rgba(var(--accent-rgb), .18);
}

.shipping-method:last-child { border-right: 0; }

.shipping-method span {
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}

.shipping-method p {
  color: var(--muted);
}

.shipping-method strong {
  color: var(--heading-text);
}

.section {
  padding: 80px 7vw;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product {
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
}

.product-image {
  height: auto;
  min-height: 185px;
  max-height: 260px;
  border-radius: 18px;
  background:
    
    #F9FAFB
    ;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  border: none;
}
.product-image img {
  
  width: 100%;
  height: 220px;
  object-fit: contain;
  
}

.product-image span {
  font-size: 5rem;
}

.product p, .split p, li {
  color: var(--muted);
  line-height: 1.7;
}

.product strong {
  color: var(--gold);
  font-size: 1.3rem;
}

.product-tax {
  margin-top: 6px;
  font-size: .86rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}

.about-card, 
.fee-note {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #FFFCF5;
  border: 1px solid rgba(var(--accent-rgb), .22);
  color: var(--heading-text);
  font-weight: 700;
}

.order-box {
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
}

.order {
  background: #F9FAFB;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--input-border);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--body-text);
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #98A2B3;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .16);
}

textarea { min-height: 100px; }

/* Extra iPhone Safari zoom prevention */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea,
button,
.qty,
.order-grid input,
.order-grid select,
.order-grid textarea{
font-size:16px !important;
-webkit-text-size-adjust:100%;
text-size-adjust:100%;
}

@supports (-webkit-touch-callout:none){
input,select,textarea{
font-size:16px !important;
}
}


.schedule-line {
  font-size: .92rem;
  color: var(--body-text);
  margin: 8px 0;
}

.fulfillment-summary {
  border: 1px solid var(--input-border);
  border-radius: 14px;
  background: #F9FAFB;
  padding: 14px 16px;
  color: var(--body-text);
  line-height: 1.55;
  font-family: var(--body-font);
}

.fulfillment-summary strong {
  color: var(--heading-text);
}


.wide { grid-column: 1 / -1; }

.cart {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart label {
  grid-template-columns: 1fr 90px;
  align-items: center;
  background: #F9FAFB;
  padding: 12px;
  border-radius: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(var(--accent-rgb), .25);
  padding-top: 18px;
  font-size: 1.4rem;
}

.checkout-panel {
  margin-top: 28px;
  border: 1px solid #EAECF0;
  border-radius: 22px;
  padding: 24px;
  background: #FFFFFF;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #F9FAFB;
  color: var(--body-text);
  line-height: 1.6;
  margin: 14px 0;
}

.checkout-summary .line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(var(--accent-rgb), .15);
  padding-bottom: 6px;
}

.checkout-summary .line:last-child {
  border-bottom: 0;
}

.order-reference {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--gold);
}

.order-reference span {
  color: var(--muted);
  font-weight: 700;
}

.order-reference strong {
  color: var(--heading-text);
  font-size: 1.35rem;
  letter-spacing: .04em;
}

.order-reference button,
.secondary-button {
  border: 1px solid var(--input-border);
  background: #FFFFFF;
  color: var(--heading-text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-panel {
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: #F9FAFB;
  border: 1px solid #EAECF0;
}

.submit-status {
  margin-top: 12px;
  font-weight: 700;
  color: var(--heading-text);
}

.submit-status.error {
  color: #B42318;
}

.confirmation-panel {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--gold);
  background: #FFFCF5;
}

.confirmation-details {
  line-height: 1.65;
  color: var(--body-text);
}

.disabled-pay {
  opacity: .45;
  pointer-events: none;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}


.fineprint {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: .9rem;
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  flex-wrap: wrap;
}

.social-hero {
  grid-column: 1 / -1;
  padding-top: 0;
}

.social-about {
  padding-top: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #EAECF0;
  color: var(--heading-text);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16,24,40,.05);
  transition: transform .18s ease, border-color .18s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: var(--gold);
  flex: 0 0 auto;
}

footer {
  padding: 46px 7vw;
  border-top: 1px solid rgba(var(--accent-rgb), .22);
  background: var(--background);
  color: var(--muted);
}

footer strong {
  color: var(--gold);
}


/* Landing-page animation effects generated by the builder */
@keyframes hlFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hlSlideDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hlSlideLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hlScaleIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
@keyframes hlFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hlSoftZoom { from { opacity: .86; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }


.site-header { animation: hlSlideDown .7s ease both; }


.site-header.scrolled { box-shadow: 0 16px 42px rgba(0,0,0,.22); }



.brand img { animation: hlScaleIn .85s cubic-bezier(.2,.8,.2,1) both .08s; }


.hero-copy .eyebrow { animation: hlFadeUp .7s ease both .12s; }
.hero-copy h1 { animation: hlFadeUp .8s ease both .24s; }
.hero-copy p:not(.eyebrow) { animation: hlFadeUp .8s ease both .36s; }
.hero-copy .button { animation: hlFadeUp .8s ease both .48s; }



.hero-card img, .placeholder-bottle { animation: hlSoftZoom 1.6s ease both .2s; }


.product { animation: hlFadeUp .85s ease both; }
.product:nth-child(2) { animation-delay: .12s; }
.product:nth-child(3) { animation-delay: .24s; }
.product:nth-child(4) { animation-delay: .36s; }


.product { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(0,0,0,.20); border-color: rgba(var(--accent-rgb), .42); }
.product-image img { transition: transform .28s ease; }
.product:hover .product-image img { transform: scale(1.035); }


.button, .secondary-button, button { transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease; }
.button:hover, .secondary-button:hover, button:hover { transform: translateY(-2px); }


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.product-preview-trigger { width: 100%; border: 0; color: inherit; cursor: zoom-in; font: inherit; position: relative; overflow: hidden; }
.product { position: relative; }
.product-status-price { display: block; color: #d00000; font-weight: 800; }
.product-status-unavailable { opacity: .68; }
.product-modal[hidden] { display: none; }
.product-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; }
.product-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(7px); }
.product-modal-dialog { position: relative; z-index: 1; width: min(1120px, 96vw); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: minmax(390px, 1.5fr) minmax(240px, .7fr); gap: 30px; padding: 28px; border-radius: 24px; background: var(--card); border: 1px solid rgba(var(--accent-rgb), .35); box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.product-modal-image-shell { min-width: 0; }
.product-modal-image { min-height: 570px; height: min(68vh, 760px); position: relative; display: grid; place-items: center; border-radius: 18px; background: rgba(var(--accent-rgb), .07); overflow: hidden; touch-action: none; cursor: zoom-in; }
.product-modal-image.is-zoomed { cursor: grab; }
.product-modal-image.is-dragging { cursor: grabbing; }
.product-modal-image img { width: 100%; height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; transform-origin: center center; will-change: transform; transition: transform .16s ease; }
.product-modal-image.is-dragging img { transition: none; }
.product-zoom-controls { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; }
.product-zoom-controls[hidden], .product-zoom-hint[hidden] { display: none; }
.product-zoom-controls button { min-width: 42px; height: 38px; padding: 0 13px; border: 1px solid rgba(var(--accent-rgb), .35); border-radius: 10px; background: var(--card); color: var(--text); font-weight: 800; cursor: pointer; }
.product-zoom-controls span { min-width: 58px; text-align: center; font-weight: 800; color: var(--accent); }
.product-zoom-hint { margin: 8px 0 0; text-align: center; font-size: .82rem; opacity: .68; }
.product-modal-copy { align-self: center; }
.product-modal-copy h2 { font-size: clamp(1.35rem, 2.4vw, 2.25rem); line-height: 1.08; letter-spacing: -0.02em; margin: 8px 0 16px; overflow-wrap: anywhere; }
.product-modal-copy p { font-size: 1rem; line-height: 1.55; }
.product-modal-copy strong { display: block; margin-top: 18px; color: var(--accent); font-size: 1.5rem; }
.product-modal-close { position: absolute; top: 12px; right: 14px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.65); color: white; font-size: 1.8rem; cursor: pointer; }
.about-photo-frame { width: 100%; max-width: 460px; min-height: min(520px, 62vw); height: 520px; justify-self: center; display: grid; place-items: center; overflow: hidden; border-radius: 16px; border: 0px solid transparent; background: rgba(var(--accent-rgb), .06); box-shadow: 0 28px 45px -14px rgba(16,24,40,.42); position: relative; }
.about-photo-frame img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; object-position: 50% 42%; }

.about-photo-placeholder { padding: 28px; text-align: center; opacity: .65; }
.preserve-lines { white-space: pre-line; }
.about-copy { font-size: 1.0rem; }
.ordering-disabled-message { max-width: 760px; margin: 24px auto 0; padding: 34px; border-radius: 20px; text-align: center; background: var(--card); border: 1px solid rgba(var(--accent-rgb), .25); font-size: 1.12rem; }
@media (max-width: 760px) { .product-modal-dialog { grid-template-columns: 1fr; width: min(96vw, 680px); } .product-modal-image { min-height: 360px; height: min(54vh, 520px); } }

/* Hive Ledger v2.0 responsive storefront polish */
html { scroll-behavior: smooth; }
.site-header > *, .hero, .section, footer > * { max-width: 1460px; margin-left: auto; margin-right: auto; }
.site-header { padding-left: max(24px, 5vw); padding-right: max(24px, 5vw); }
.hero { min-height: 58vh; padding-top: clamp(52px, 6vw, 88px); padding-bottom: clamp(34px, 4vw, 58px); }
.section { padding-top: clamp(64px, 6vw, 92px); padding-bottom: clamp(64px, 6vw, 92px); padding-left: max(24px, 4vw); padding-right: max(24px, 4vw); }
#products.section { padding-top: clamp(34px, 3.5vw, 54px); }
.section-heading { margin-bottom: 48px; }
.products { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 330px)); justify-content: center; gap: 24px; }
.product { width: 100%; max-width: 330px; padding: 16px; display: flex; flex-direction: column; min-height: 100%; justify-self: center; }
.product-image { min-height: 185px; height: 260px; max-height: 260px; margin-bottom: 20px; }
.product-image img { max-height: 220px; height: 100%; width: 100%; padding: 10px; object-fit: contain; }
.product-copy { flex: 1; }
.product-copy h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); margin-bottom: 12px; }
.product-purchase { border-top: 1px solid rgba(var(--accent-rgb), .20); padding-top: 20px; margin-top: 20px; }
.product-purchase .product-tax { margin-bottom: 0; }
.about-section { gap: clamp(44px, 7vw, 90px); align-items: center; }
.about-copy { max-width: 68ch; }
.button, .secondary-button, .order-reference button { border-radius: 12px; min-height: 48px; }
.contact-section { padding-top: clamp(72px, 8vw, 110px); }
.contact-panel { padding: clamp(28px, 5vw, 64px); border: 1px solid rgba(var(--accent-rgb), .24); border-radius: 28px; background: var(--card); box-shadow: var(--shadow-soft); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.contact-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; max-width: 54ch; }
.contact-methods { display: grid; gap: 14px; }
.contact-card { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border-radius: 18px; border: 1px solid rgba(var(--accent-rgb), .20); background: #FFFFFF; transition: transform .18s ease, border-color .18s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: var(--gold); }
.contact-card span { color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { color: var(--heading-text); overflow-wrap: anywhere; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 28px; }
.footer-grid p { line-height: 1.55; margin: 6px 0; font-size: .9rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-domain { padding-top: 16px; margin-top: 16px; font-size: .82rem; border-top: 1px solid rgba(var(--accent-rgb), .16); }

@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .site-header.layout-left,
  .site-header.layout-split {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand strong {
    font-size: min(3.5rem, 2.4rem);
  }

  .brand span {
    font-size: min(1.4rem, 1.05rem);
  }

  .brand img {
    max-height: min(115px, 95px);
    width: auto;
    height: auto;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero, .split {
    grid-template-columns: 1fr;
  }

  .shipping-strip, .products {
    grid-template-columns: 1fr;
  }

  .shipping-method {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--accent-rgb), .18);
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .hero { display: flex; flex-direction: column; min-height: auto; padding-top: 38px; padding-bottom: 72px; text-align: center; }
  .hero-card { order: -1; max-width: min(88vw, 420px); min-height: 260px; }
  .hero-card img { height: min(420px, 52vh); }
  .hero-copy p:not(.eyebrow) { font-size: 1.08rem; line-height: 1.65; margin-left: auto; margin-right: auto; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .section-heading { margin-bottom: 30px; }
  .product { max-width: min(100%, 330px); padding: 16px; border-radius: 20px; }
  .product-image { min-height: min(185px, 58vw); height: min(260px, 72vw); }
  .product-image img { height: 100%; max-height: min(220px, 68vw); }
  .about-section { gap: 34px; }
  .about-photo-frame { width: min(100%, 460px); min-height: min(520px, 78vw); height: min(520px, 92vw); }
  .contact-panel { grid-template-columns: 1fr; padding: 26px 20px; border-radius: 22px; }
  .contact-copy { text-align: center; }
  .contact-copy p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding-left: 24px; padding-right: 24px; }
  .order-box { padding: 20px 16px; }
  input, select, textarea { font-size: 16px; }
}