:root {
  --bg: #FDFBF7;
  --surface: #F0EDE6;
  --ink: #1A1A18;
  --muted: #8A8883;
  --line: #DDD9D2;
  --accent: #C2502E;
  --accent-light: #E8C5B8;
  --dark: #1A1A18;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--bg); font: 16px/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, select, summary { cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
a, button { touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
h1, h2 { font-family: var(--sans); font-weight: 500; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 20px; }
h1 { font-size: clamp(42px, 5vw, 72px); }
h2 { font-size: clamp(34px, 3.8vw, 54px); }
h3 { margin: 0 0 10px; font-size: 17px; font-weight: 500; line-height: 1.4; letter-spacing: -.01em; }
em { color: var(--accent); font-style: normal; font-weight: 500; }
p { margin: 0 0 22px; color: var(--muted); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { margin-bottom: 14px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.container { width: min(1280px, calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 96px; }
.eyebrow { display: block; font-size: 11px; letter-spacing: .03em; line-height: 1.5; font-weight: 500; color: var(--muted); margin-bottom: 16px; }
.small, .image-note, .preview-caption { font-size: 12px; line-height: 1.65; }
.muted { color: var(--muted); font-weight: 400; }
.image-note { margin: 20px 0 0; color: var(--muted); }
.visually-hidden, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 999; background: white; padding: 12px 24px; }

/* Announcement */
.announcement { background: var(--ink); color: #E8E5DF; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 9px 24px; font-size: 11px; letter-spacing: .02em; }
.announcement a { border-left: 1px solid #555; padding-left: 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 30; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; width: min(1360px,calc(100% - 64px)); margin: auto; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; letter-spacing: -.04em; font-weight: 500; font-size: 28px; line-height: 1; }
.brand-monogram { font-family: var(--serif); font-style: italic; font-size: 36px; margin-left: 3px; color: var(--accent); }
#main-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 400; }
#main-nav a { padding: 12px 0; position: relative; color: var(--muted); transition: color 150ms; }
#main-nav a:hover, #main-nav a[aria-current] { color: var(--ink); }
#main-nav a::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 180ms; }
#main-nav a:hover::after, #main-nav a[aria-current]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.quote-toggle { display: flex; align-items: center; gap: 14px; min-height: 40px; background: none; border: 1px solid var(--line); border-radius: 3px; padding: 8px 14px; font-size: 12px; }
.quote-toggle span { display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; width: 22px; height: 22px; font-size: 10px; font-weight: 600; }
.menu-toggle { display: none; background: none; border: none; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 1.5px; width: 22px; background: currentColor; margin: 6px 0; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 14px 28px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 500; letter-spacing: .01em; transition: background 150ms, color 150ms, border-color 150ms; }
.button span { font-size: 14px; line-height: 1; }
.primary { background: var(--ink); color: var(--bg); }
.primary:hover { background: #333; }
.light { background: var(--bg); color: var(--ink); border-color: var(--line); }
.light:hover { background: var(--surface); border-color: #ccc; }
.outline { border-color: var(--ink); background: transparent; }
.outline:hover { background: var(--surface); }
.text-link { display: inline-flex; gap: 8px; align-items: center; padding: 6px 0; min-height: 40px; border: 0; border-bottom: 1px solid var(--line); background: none; font-size: 13px; font-weight: 500; color: var(--ink); transition: border-color 150ms; }
.text-link span { font-size: 14px; transition: transform 150ms; }
.text-link:hover { border-color: var(--ink); }
.text-link:hover span { transform: translate(2px, -2px); }

/* Hero */
.hero { display: grid; grid-template-columns: 38% 62%; min-height: 620px; }
.hero-copy { padding: 72px 48px 40px max(48px,calc((100vw - 1280px)/2)); display: flex; align-items: flex-start; flex-direction: column; justify-content: center; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 500; }
.tiny-line { display: inline-block; width: 24px; height: 1.5px; background: var(--accent); }
.hero h1 { font-size: clamp(38px, 4.2vw, 64px); line-height: 1.08; margin-bottom: 22px; }
.hero-copy p { font-size: 15px; line-height: 1.75; margin-bottom: 28px; max-width: 380px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-foot { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; font-size: 10px; color: var(--muted); letter-spacing: .02em; }
.hero-foot span+span { border-left: 1px solid var(--line); padding-left: 16px; }
.hero-photo { position: relative; min-width: 0; overflow: hidden; }
.hero-photo > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 51% 50%; }
.hero-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 28px 22px; background: linear-gradient(transparent,rgba(20,20,18,.55)); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; font-size: 11px; }
.hero-caption > span { font-family: var(--serif); font-style: italic; font-size: 17px; opacity: .9; }
.hero-caption a { padding-block: 10px; opacity: .85; }
.hero-caption a:hover { opacity: 1; }

/* Collection strip */
.collection-strip { border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 20px 32px; gap: 28px; font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.collection-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.collection-strip a { margin-left: auto; color: var(--accent); font-weight: 500; }

/* Section headings */
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { font-size: 14px; max-width: 420px; margin-bottom: 12px; }

/* Pattern toolbar */
.pattern-toolbar { margin: 32px 0 24px; border-block: 1px solid var(--line); padding: 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pattern-toolbar > span { color: var(--muted); font-size: 11px; }
.pattern-options { display: flex; gap: 8px; }
.pattern-options button { display: flex; align-items: center; gap: 9px; border: 1px solid transparent; padding: 8px 12px; min-height: 40px; background: transparent; font-size: 11px; border-radius: 3px; transition: background 150ms, border-color 150ms; }
.pattern-options button[aria-pressed=true] { background: var(--surface); border-color: var(--line); }
.pattern-options button:hover { background: var(--surface); }
.pattern-icon { width: 20px; height: 22px; display: inline-block; flex-shrink: 0; opacity: .6; border-radius: 2px; }
.pattern-icon.rings { background: repeating-linear-gradient(0deg,transparent 0 5px,#777 5px 6px); }
.pattern-icon.flutes { background: repeating-linear-gradient(90deg,transparent 0 5px,#777 5px 6px); }
.pattern-icon.dome-grid { background: radial-gradient(circle,#777 1.5px,transparent 2px) 0 0 / 7px 7px; }
.pattern-icon.ogee { background: repeating-linear-gradient(55deg,transparent 0 6px,#777 6px 7px,transparent 7px 12px),repeating-linear-gradient(-55deg,transparent 0 6px,#777 6px 7px,transparent 7px 12px); }
.pattern-icon.lattice { background: repeating-linear-gradient(45deg,transparent 0 4px,#777 4px 5px,transparent 5px 9px),repeating-linear-gradient(-45deg,transparent 0 4px,#777 4px 5px,transparent 5px 9px); }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 32px 18px; }
.product-image { display: block; position: relative; overflow: hidden; background: var(--surface); aspect-ratio: 1/1.12; border-radius: 4px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product-image:hover img { transform: scale(1.04); }
.image-cta { display: flex; align-items: center; justify-content: space-between; position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(253,251,247,.92); padding: 10px 14px; font-size: 11px; border-radius: 3px; opacity: 0; transform: translateY(6px); transition: opacity 180ms, transform 180ms; }
.product-image:hover .image-cta, .product-image:focus-visible .image-cta { opacity: 1; transform: none; }
.product-info { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; }
.product-info h3 { font-size: 22px; font-weight: 500; margin: 0 0 2px; letter-spacing: -.02em; }
.product-info p { font-size: 11px; margin-bottom: 0; }
.pattern-name { font-size: 10px; color: var(--muted); padding-top: 5px; overflow-wrap: anywhere; }
.product-use { font-size: 12px; margin-top: 12px; margin-bottom: 0; color: var(--muted); }

/* Succulent section */
.succulent-section { display: grid; grid-template-columns: 1fr 1fr; gap: 7%; align-items: center; padding-bottom: 96px; }
.succulent-photo { display: block; background: var(--surface); overflow: hidden; border-radius: 4px; }
.succulent-photo img { width: 100%; }
.succulent-copy > p { max-width: 480px; }
.succulent-copy > .text-link { display: table; margin-top: 16px; }
.dimensions { display: grid; grid-template-columns: repeat(3,1fr); margin: 24px 0; padding-block: 16px; border-block: 1px solid var(--line); }
dt { font-size: 10px; color: var(--muted); letter-spacing: .02em; }
dd { margin: 4px 0 0; font-size: 18px; font-weight: 500; }

/* Material section */
.material-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); }
.material-photo { position: relative; min-height: 620px; overflow: hidden; }
.material-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; transform: scale(1.5); transform-origin: 45% 60%; }
.photo-label { position: absolute; bottom: 24px; left: 28px; background: var(--bg); padding: 9px 14px; font-size: 11px; border-radius: 3px; }
.material-copy { padding: 76px clamp(36px,5vw,80px); }
.material-copy p { font-size: 14px; max-width: 460px; }
.material-facts { margin-top: 36px; }
.material-facts > div { padding: 14px 0; border-top: 1px solid #C8C4BC; display: grid; grid-template-columns: 28px 1fr; column-gap: 12px; }
.material-facts span { font-size: 11px; padding-top: 3px; color: var(--accent); font-weight: 600; }
.material-facts h3 { font-size: 14px; margin: 0; font-weight: 500; }
.material-facts p { font-size: 12px; margin: 2px 0 0; grid-column: 2; }

/* Sizes */
.sizes-section { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sizes-section h2 { font-size: clamp(30px,3vw,44px); }
.sizes-section p { font-size: 14px; }
table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; }
thead { font-size: 10px; letter-spacing: .03em; color: var(--muted); font-weight: 400; }
th, td { padding: 16px 10px; border-bottom: 1px solid var(--line); }
th:first-child { padding-left: 0; }
tbody th { font-size: 15px; font-weight: 500; }
tbody a { display: flex; gap: 10px; align-items: center; min-height: 40px; }
.size-table-wrap > p { font-size: 10px; margin-top: 14px; }

/* Custom/corporate banner */
.custom-banner { background: var(--ink); color: var(--bg); display: grid; grid-template-columns: 1fr 1fr; }
.custom-copy { padding: 60px 56px; }
.custom-copy em { color: var(--accent-light); }
.custom-copy p { color: #B8B5AE; font-size: 14px; }
.custom-copy > .small { display: block; margin-top: 20px; color: #999; font-size: 11px; }
.brand-pot { position: relative; overflow: hidden; background: var(--surface); }
.brand-pot > img { width: 100%; height: 100%; object-fit: cover; }
.pot-overlay { position: absolute; left: 22%; top: 42%; width: 56%; text-align: center; pointer-events: none; }
.logo-example { display: block; font-family: var(--sans); font-size: 25px; letter-spacing: -.03em; line-height: 1.02; color: #555; }
.logo-example > span { display: block; font-size: .65em; }
.logo-example strong { font-size: 1.5em; font-weight: 500; }
.preview-caption { position: absolute; bottom: 14px; left: 18px; right: 18px; text-align: center; font-size: 10px; background: rgba(253,251,247,.85); padding: 6px; color: var(--muted); border-radius: 3px; }

/* Text callout */
.text-callout { display: grid; grid-template-columns: 1fr 1.25fr 1fr; align-items: center; gap: 40px; padding-block: 80px; }
.text-callout .eyebrow { margin: 0; }
.text-callout h2 { margin: 0; }
.text-callout p { font-size: 14px; }

/* How-to steps */
.how-section { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 56px; }
.steps > article { border-top: 2px solid var(--line); padding-top: 22px; }
.steps > article > span { display: none; }
.steps h3 { font-size: 17px; margin-top: 20px; }
.steps p { font-size: 13px; margin-bottom: 0; }

/* FAQ */
.faq-section { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; }
.faq-list { width: 100%; }
details { border-bottom: 1px solid var(--line); }
details:first-child { border-top: 1px solid var(--line); }
summary { display: flex; gap: 20px; justify-content: space-between; align-items: center; list-style: none; padding: 20px 0; font-size: 14px; font-weight: 400; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 20px; font-weight: 300; color: var(--muted); transition: transform 200ms; }
details[open] summary span { transform: rotate(45deg); }
details > p { font-size: 13px; max-width: 60ch; margin-bottom: 22px; }

/* Local section */
.local-section { padding: 56px 0 88px; text-align: center; border-top: 1px solid var(--line); }
.local-section p { max-width: 640px; margin: 0 auto 18px; font-size: 14px; }

/* Footer */
.site-footer { background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-block: 60px; }
.footer-top .brand { font-size: 34px; margin-bottom: 20px; }
.footer-top .brand-monogram { font-size: 44px; }
.footer-top p { font-size: 12px; }
.footer-top h2 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .03em; margin-bottom: 18px; text-transform: uppercase; color: var(--muted); }
.footer-top > div > a:not(.brand) { display: block; font-size: 13px; margin-bottom: 11px; width: fit-content; }
.footer-top > div > a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-top .eyebrow { font-size: 9px; margin-bottom: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #C8C4BC; padding-block: 18px; font-size: 10px; color: var(--muted); }

/* Inner pages */
.page-intro { padding-top: 36px; padding-bottom: 44px; }
.breadcrumbs { font-size: 11px; margin-bottom: 40px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.page-intro .eyebrow { margin-bottom: 18px; }
.intro-copy { max-width: 600px; font-size: 15px; margin-bottom: 0; }
.catalog-filters { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 32px; padding-block: 20px; border-block: 1px solid var(--line); }
.catalog-filters > div { min-width: 200px; }
.catalog-filters label { font-size: 11px; }
.catalog-filters #result-count { margin: 0 0 12px auto; font-size: 12px; }
.catalog-section { padding-bottom: 56px; }
.catalog-products .product-card { margin-bottom: 18px; }
.textures-guide { border-top: 1px solid var(--line); }
.texture-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; padding-top: 28px; }
.texture-grid .pattern-icon { width: 36px; height: 40px; margin-bottom: 20px; }
.texture-grid h3 { font-size: 18px; }
.texture-grid .eyebrow { font-size: 9px; margin-bottom: 12px; }
.texture-grid p { font-size: 13px; }

/* Product detail */
.product-crumb { padding-top: 28px; margin-bottom: 22px; }
.product-detail { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; padding-bottom: 56px; }
.detail-image { background: var(--surface); border-radius: 4px; }
.detail-image img { width: 100%; }
.detail-copy { padding-top: 12px; }
.detail-copy h1 { font-size: 52px; }
.detail-copy > p { font-size: 14px; }
.detail-copy .eyebrow { font-size: 10px; }
.detail-copy fieldset { margin-bottom: 24px; }
.size-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.size-options a { border: 1px solid var(--line); border-radius: 3px; padding: 10px 5px; text-align: center; font-size: 11px; transition: background 150ms, border-color 150ms; }
.size-options a[aria-current] { background: var(--surface); border-color: var(--ink); }
.size-options small { display: block; font-size: 9px; margin-top: 2px; }
.detail-patterns { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.detail-patterns button { display: flex; gap: 10px; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 3px; background: transparent; font-size: 11px; min-height: 44px; transition: background 150ms, border-color 150ms; }
.detail-patterns button[aria-pressed=true] { border-color: var(--ink); background: var(--surface); }
#pattern-description { margin: 8px 0 0; font-size: 11px; }
.add-row { display: flex; align-items: end; gap: 12px; margin-top: 20px; }
.add-row > div { width: 84px; flex-shrink: 0; }
.add-row .button { flex: 1; }
.add-row + p { font-size: 10px; margin-top: 12px; }
.detail-notes { display: flex; flex-wrap: wrap; gap: 18px; font-size: 10px; border-block: 1px solid var(--line); padding-block: 14px; margin-bottom: 14px; }

/* Forms */
label { display: block; font-size: 12px; margin-bottom: 7px; font-weight: 500; }
input:not([type=radio]), select, textarea { display: block; width: 100%; min-height: 48px; color: var(--ink); background: transparent; border: 1px solid var(--line); padding: 12px; border-radius: 3px; transition: border-color 150ms; }
input:not([type=radio]):focus, select:focus, textarea:focus { border-color: var(--ink); }
input[type=file] { font-size: 11px; padding: 12px; }
input[type=file]::file-selector-button { background: var(--surface); border: 0; padding: 6px 8px; margin-right: 10px; color: var(--ink); cursor: pointer; border-radius: 2px; }
textarea { resize: vertical; }

/* Custom detail pages */
.custom-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; padding-bottom: 64px; }
.custom-preview { position: sticky; top: 100px; background: var(--surface); min-height: 400px; aspect-ratio: 1/1.12; overflow: hidden; border-radius: 4px; }
.custom-preview > img { width: 100%; height: 100%; object-fit: cover; }
.custom-preview .pot-overlay { top: 43%; }
.custom-preview .logo-example { font-size: 40px; }
#uploaded-logo { max-width: 70%; max-height: 120px; width: auto; object-fit: contain; margin: 0 auto; mix-blend-mode: multiply; }
.custom-form h2 { font-size: 38px; }
.custom-form p { font-size: 13px; }
.custom-form > input, .custom-form > select, .custom-form > textarea { margin-bottom: 18px; }
.custom-form .small, .field-help p { font-size: 10px; }
.custom-form > .button { margin: 8px 0 16px; width: 100%; }
.custom-form fieldset { margin: 22px 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.field-help { display: flex; justify-content: space-between; gap: 14px; margin-top: -6px; }
.field-help p { margin: 0; }
.field-help > span { font-size: 10px; flex-shrink: 0; color: var(--muted); }
.letter-options { display: flex; gap: 10px; }
.letter-options label { flex: 1; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 3px; padding: 10px 14px; min-height: 44px; margin: 0; cursor: pointer; font-weight: 400; }
input[type=radio] { accent-color: var(--accent); }
.custom-lettering { font-family: var(--serif); font-size: clamp(18px,2.8vw,34px); line-height: 1.15; overflow-wrap: anywhere; }
.custom-lettering.sans { font-family: var(--sans); font-weight: 500; }
#logo-error { color: #b5382a; font-size: 12px; }
.phrase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.phrase-grid button { border: 1px solid var(--line); border-radius: 4px; padding: 32px 22px; font: 28px var(--serif); background: var(--surface); text-align: left; transition: border-color 150ms; }
.phrase-grid button:hover { border-color: var(--accent); }
.phrase-grid button span { display: block; font: 11px var(--sans); margin-bottom: 22px; color: var(--muted); }

/* Reading / blog */
.reading-section { max-width: 820px; padding-block: 15px 88px; }
.prose h2 { font-size: 28px; margin-top: 38px; }
.prose p, .prose li { font-size: 15px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .button { text-decoration: none; }
.article-cta { border-top: 1px solid var(--line); margin-top: 44px; }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; padding-bottom: 88px; }
.article-grid article { border-top: 1px solid var(--line); padding-top: 26px; }
.article-grid h2 { font-size: 30px; }
.article-grid p { font-size: 13px; }

/* Coverage */
.coverage-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 52px; padding-bottom: 88px; }
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 18px; }
.city-grid > div { padding: 22px 0; border-top: 1px solid var(--line); }
.city-grid span { font-size: 10px; color: var(--muted); }
.city-grid h2 { font-size: 22px; margin-top: 10px; }
.coverage-note { background: var(--surface); padding: 32px; border-radius: 4px; }
.coverage-note h2 { font-size: 32px; }
.coverage-note p { font-size: 13px; }

/* Quote dialog */
#quote-dialog { position: fixed; inset: 0 0 0 auto; width: min(480px,100%); max-width: 100%; height: 100dvh; max-height: 100dvh; margin: 0; border: 0; padding: 24px; background: var(--bg); color: var(--ink); border-radius: 0; }
#quote-dialog[open] { display: flex; flex-direction: column; }
#quote-dialog::backdrop { background: rgba(20,20,18,.4); }
.drawer-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.drawer-head .eyebrow { font-size: 10px; margin-bottom: 8px; }
.drawer-head h2 { font-size: 36px; margin: 0; }
.icon-button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 3px; background: none; font-size: 22px; line-height: 1; }
#quote-items { flex: 1; overflow: auto; padding: 14px 0; }
.quote-empty { padding: 32px 0; }
.quote-empty h3 { font-size: 24px; font-weight: 500; }
.quote-empty p { font-size: 13px; }
.quote-item { display: grid; grid-template-columns: 88px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.quote-item img { aspect-ratio: 1; object-fit: cover; border-radius: 3px; }
.quote-item h3 { font-size: 20px; font-weight: 500; margin-bottom: 3px; }
.quote-item p { font-size: 11px; margin-bottom: 10px; }
.quote-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.quote-controls label { margin: 0; font-size: 10px; display: flex; align-items: center; gap: 8px; }
.quote-controls input { width: 68px; padding: 7px; min-height: 40px; font-size: 13px; }
.quote-controls button { border: 0; border-bottom: 1px solid var(--line); background: none; font-size: 11px; min-height: 40px; padding: 4px; color: var(--muted); }
.quote-controls button:hover { color: var(--ink); border-color: var(--ink); }
.drawer-footer { border-top: 1px solid var(--line); padding-top: 18px; }
.drawer-footer p { font-size: 12px; margin-bottom: 14px; }
.drawer-footer .button { width: 100%; }
.drawer-footer .small { font-size: 10px; margin: 10px 0 0; }

/* Toast */
#toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%,16px); opacity: 0; pointer-events: none; color: #fff; background: var(--ink); padding: 13px 22px; max-width: calc(100% - 40px); font-size: 12px; z-index: 70; border-radius: 4px; transition: opacity 180ms, transform 180ms; }
#toast.visible { opacity: 1; transform: translate(-50%,0); }

/* Responsive: large */
@media (min-width: 1500px) {
  .hero-copy { padding-left: calc((100vw - 1280px)/2); }
  .hero { min-height: 680px; }
}

/* Responsive: medium-large */
@media (max-width: 1150px) {
  .container { width: calc(100% - 56px); }
  .nav-wrap { width: calc(100% - 48px); gap: 16px; }
  #main-nav { gap: 16px; }
  .hero-copy { padding: 56px 24px 32px 28px; }
  .hero h1 { font-size: clamp(36px, 4.5vw, 54px); }
  .hero { min-height: 580px; }
  .hero-foot { gap: 10px; }
  .hero-foot span+span { padding-left: 10px; }
  .hero-caption > span { display: none; }
  .hero-caption { justify-content: end; }
  .collection-strip { gap: 18px; padding-inline: 24px; }
  .collection-strip a { margin-left: auto; }
  .product-info { flex-direction: column; }
  .pattern-name { padding-top: 0; }
  .material-copy { padding: 56px 32px; }
  .sizes-section, .faq-section, .product-detail, .custom-detail { gap: 36px; }
  .custom-copy { padding: 44px 32px; }
  .text-callout { grid-template-columns: 1fr 1fr; }
  .text-callout > .eyebrow { grid-column: 1/-1; }
  .footer-top { gap: 28px; }
  .detail-copy h1 { font-size: 44px; }
}

/* Responsive: tablet */
@media (max-width: 800px) {
  .section { padding-block: 64px; }
  #main-nav { display: none; position: absolute; top: 68px; left: 0; width: 100%; background: var(--bg); padding: 18px 28px 24px; border-bottom: 1px solid var(--line); box-shadow: 0 8px 20px rgba(26,26,24,.08); }
  #main-nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  #main-nav a { font-size: 15px; border-bottom: 1px solid var(--line); color: var(--ink); }
  .menu-toggle { display: block; }
  .nav-wrap { height: 68px; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 540px; }
  .hero h1 { font-size: clamp(32px, 5vw, 48px); }
  .hero-copy p { font-size: 13px; }
  .hero .button { padding-inline: 16px; gap: 10px; font-size: 12px; }
  .hero-foot { margin-top: 28px; gap: 10px; }
  .hero-foot span { font-size: 9px; }
  .hero-foot span+span { border: 0; padding: 0; }
  .collection-strip a { display: none; }
  .section-heading { gap: 24px; }
  .section-heading h2 { font-size: 36px; }
  .pattern-toolbar { display: block; }
  .pattern-toolbar > span { display: block; margin-bottom: 10px; }
  .pattern-options { justify-content: space-between; gap: 4px; }
  .pattern-options button { font-size: 10px; padding: 7px; gap: 6px; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px 14px; }
  .product-info { flex-direction: row; }
  .material-section { grid-template-columns: 1fr 1fr; }
  .material-photo { min-height: 560px; }
  .material-copy { padding: 40px 24px; }
  .material-copy h2 { font-size: 36px; }
  .material-copy p { font-size: 13px; }
  .sizes-section, .faq-section { grid-template-columns: 1fr; gap: 28px; }
  .custom-copy h2 { font-size: 36px; }
  .custom-copy p { font-size: 13px; }
  .custom-copy .button { padding: 12px; gap: 10px; font-size: 11px; }
  .steps { gap: 22px; margin-top: 36px; }
  .steps h3 { font-size: 16px; }
  .footer-top { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .catalog-filters > div { min-width: 0; flex: 1; }
  .catalog-filters #result-count { display: none; }
  .texture-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail, .custom-detail { grid-template-columns: 1fr; }
  .detail-visual { max-width: 580px; width: 100%; margin: auto; }
  .detail-copy { padding-top: 0; }
  .custom-preview { position: relative; top: 0; min-height: 0; aspect-ratio: 1; max-width: 580px; width: 100%; margin: auto; }
  .custom-lettering { font-size: 30px; }
  .coverage-section { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .phrase-grid { gap: 12px; }
  .phrase-grid button { padding: 22px 14px; font-size: 22px; }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  html { scroll-padding-top: 80px; }
  .container { width: calc(100% - 36px); }
  .announcement { font-size: 10px; padding: 8px 10px; }
  .announcement a { display: none; }
  .nav-wrap { width: calc(100% - 28px); gap: 10px; }
  .brand { font-size: 24px; }
  .brand-monogram { font-size: 32px; }
  .nav-actions { gap: 4px; }
  .quote-toggle { font-size: 10px; gap: 8px; padding: 6px 10px; }
  .quote-toggle span { width: 20px; height: 20px; }
  .hero { display: flex; flex-direction: column; }
  .hero-photo { order: -1; min-height: 320px; }
  .hero-copy { order: 0; padding: 32px 20px; }
  .hero h1 { font-size: clamp(36px, 10vw, 54px); }
  .hero-copy .eyebrow { margin-bottom: 20px; }
  .hero-copy p { font-size: 15px; line-height: 1.7; }
  .hero .button { font-size: 13px; padding-inline: 20px; gap: 12px; width: 100%; justify-content: space-between; }
  .hero-foot { margin-top: 24px; gap: 16px; }
  .hero-foot span { font-size: 9px; }
  .hero-caption { padding: 44px 18px 14px; font-size: 10px; justify-content: space-between; }
  .hero-caption > span { display: block; font-size: 14px; }
  .collection-strip { padding: 18px 14px; gap: 12px; font-size: 9px; }
  .section { padding-block: 52px; }
  .section-heading { display: block; margin-bottom: 24px; }
  .section-heading h2 { margin-bottom: 20px; }
  .section-heading p { font-size: 13px; }
  h2 { font-size: 36px; }
  .eyebrow { font-size: 10px; margin-bottom: 18px; }
  .pattern-toolbar { margin: 22px 0; }
  .pattern-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .pattern-options button { font-size: 10px; gap: 8px; }
  .product-grid { gap: 24px 10px; }
  .product-image { aspect-ratio: 1/1.12; }
  .image-cta { display: none; }
  .product-info { flex-direction: column; margin-top: 12px; }
  .product-info h3 { font-size: 21px; }
  .product-info p { font-size: 10px; }
  .product-use { font-size: 11px; margin-top: 8px; }
  .image-note { font-size: 10px; }
  .material-section { display: flex; flex-direction: column; }
  .material-photo { min-height: 360px; }
  .material-copy { padding: 44px 20px; }
  .material-copy p { font-size: 14px; }
  .material-facts p { font-size: 11px; }
  .custom-banner { grid-template-columns: 1fr; }
  .custom-copy { padding: 40px 24px; }
  .custom-copy h2 { font-size: 38px; }
  .custom-copy p { font-size: 14px; }
  .custom-copy .button { font-size: 12px; padding-inline: 18px; gap: 12px; }
  .custom-banner .brand-pot { aspect-ratio: 1; }
  .text-callout { grid-template-columns: 1fr; gap: 24px; padding-block: 48px; }
  .text-callout h2 { font-size: 42px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps h3 { font-size: 17px; margin-top: 12px; }
  .faq-section { gap: 28px; }
  .local-section { padding: 44px 0 56px; }
  .footer-top { gap: 30px 18px; padding-block: 40px; }
  .footer-top > div:first-child { grid-column: 1/-1; }
  .footer-top > div:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-wrap: wrap; gap: 8px 18px; }
  .footer-bottom > span:nth-child(2) { display: none; }
  .page-intro { padding-top: 24px; padding-bottom: 34px; }
  .breadcrumbs { margin-bottom: 32px; font-size: 10px; }
  .page-intro h1 { font-size: 42px; }
  .intro-copy { font-size: 14px; }
  .catalog-filters { flex-wrap: wrap; gap: 12px; }
  .catalog-filters > div { flex: 1 1 42%; }
  .catalog-filters select { font-size: 13px; }
  .catalog-filters #result-count { display: block; margin: 0 0 12px auto; }
  .texture-grid { gap: 24px 20px; }
  .texture-grid h3 { font-size: 17px; }
  .texture-grid p { font-size: 12px; }
  .product-detail { gap: 22px; }
  .detail-copy h1 { font-size: 42px; }
  .detail-copy > p { font-size: 14px; }
  .add-row .button { font-size: 11px; gap: 10px; padding-inline: 14px; }
  input:not([type=radio]),select,textarea { font-size: 16px; }
  .custom-form h2 { font-size: 34px; }
  .custom-preview .logo-example { font-size: 30px; }
  .form-row { gap: 10px; }
  .custom-form input[type=file] { font-size: 11px; }
  .phrase-grid { grid-template-columns: 1fr; gap: 12px; }
  .phrase-grid button { font-size: 26px; padding: 24px 20px; }
  .phrase-grid button span { margin-bottom: 14px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .city-grid h2 { font-size: 22px; }
  .coverage-note { padding: 24px 20px; }
  th,td { font-size: 11px; padding-inline: 5px; }
  #quote-dialog { padding: 20px 18px; }
  .footer-top > div > a:not(.brand) { min-height: 44px; display: flex; align-items: center; margin-bottom: 0; }
  .succulent-section { grid-template-columns: 1fr; gap: 28px; padding-bottom: 52px; }
  .succulent-copy h2 { font-size: 34px; }
  .succulent-copy .button { width: 100%; padding-inline: 16px; justify-content: space-between; }
  .hero-copy p, .intro-copy, .custom-form p:not(.small), .material-copy > p, .local-section p { font-size: 16px; }
}

@media (max-width: 1000px) {
  .hero h1 { font-size: clamp(34px, 4.5vw, 50px); }
  .succulent-section { gap: 5%; }
  .succulent-copy h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Product scale transforms */
.detail-image, .succulent-photo { overflow: hidden; }
img[data-model="suculenta"] { --product-zoom: 2.5; --product-shift: -21%; }
img[data-model="mediana"] { --product-zoom: 1.8; --product-shift: -16%; }
img[data-model="domo"] { --product-zoom: 1.25; --product-shift: -20%; }
img[data-model="grande"] { --product-zoom: 1; --product-shift: 0%; }
.detail-image > img, .succulent-photo > img, .custom-preview > img, .brand-pot > img {
  transform: scale(var(--product-zoom)) translateY(var(--product-shift));
  transform-origin: center;
}
.custom-banner .brand-pot { aspect-ratio: 1; align-self: center; }
.custom-preview { aspect-ratio: 1; min-height: 0; }
.pot-overlay, .custom-preview .pot-overlay { top: 57%; transform: translateY(-50%); }
