:root {
  --topbar-h: 68px;
  --ink: #090a0d;
  --panel: #15161b;
  --panel-2: #1d1e24;
  --line: #2b2d35;
  --muted: #92949d;
  --paper: #f5f4ef;
  --white: #ffffff;
  --acid: #f6a044;
  --accent: #24664f;
  --danger: #ff766f;
  --shadow: 0 18px 45px rgba(0, 0, 0, .24);
  --radius: 16px;
  /* Open surfaces: fills instead of borders, hairlines only where they separate. */
  --surface: rgba(255, 255, 255, .035);
  --field: rgba(255, 255, 255, .055);
  --field-hover: rgba(255, 255, 255, .08);
  --hairline: rgba(255, 255, 255, .08);
  --r-field: 12px;
}

* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Thai", sans-serif;
  line-height: 1.5;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.topbar {
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(9, 10, 13, .95);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { color: var(--white); text-decoration: none; display: inline-flex; align-items: center; gap: 12px; font-size: 1.05rem; letter-spacing: -.02em; }
.brand b { color: var(--acid); font-size: .72rem; letter-spacing: .1em; margin-left: 5px; }
.brand-mark { width: 20px; height: 20px; display: inline-block; background: var(--white); clip-path: polygon(18% 0, 100% 0, 70% 100%, 0 100%); }
.eyebrow { color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin: 0; }
.save-state { color: #cdced3; display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; }
.save-state i { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 4px rgba(246,160,68,.12); }
.ghost-button { justify-self: end; border: 0; background: var(--field); color: #d8d8de; padding: 9px 14px; border-radius: var(--r-field); }
.ghost-button:hover { background: var(--field-hover); color: var(--white); }
.topbar-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.user-chip { color: #cdced3; font-size: .82rem; padding: 0 4px; max-width: 16ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.step-nav { display: flex; justify-content: center; gap: 4px; min-width: 0; }
.step-button { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; border: 1px solid transparent; border-radius: 12px; background: transparent; color: var(--muted); padding: 5px 12px 5px 5px; min-height: 40px; transition: .2s ease; }
.step-button:hover:not(:disabled) { background: #202127; color: var(--white); }
.step-button:disabled { cursor: not-allowed; opacity: .45; }
.step-button.active { background: var(--acid); color: #17120c; border-color: var(--acid); }
.step-button.complete { color: #dddde2; }
.step-number { width: 28px; height: 28px; border-radius: 8px; border: 1px solid transparent; background: rgba(255,255,255,.06); color: var(--white); display: grid; place-items: center; font-size: .75rem; }
.step-button.active .step-number { background: rgba(9,10,13,.88); border-color: rgba(9,10,13,.88); }
.step-button.complete .step-number { border-color: var(--acid); color: var(--acid); }
.step-label { font-weight: 680; font-size: .84rem; }

.workspace { min-width: 0; min-height: calc(100vh - var(--topbar-h)); background: #0d0e12; padding: 40px; overflow: hidden; }
.workspace:focus { outline: none; }
.workspace-inner { max-width: 1320px; margin: 0 auto; }
.workspace-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 28px; }
.workspace-heading h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; margin: 8px 0 0; letter-spacing: -.035em; font-weight: 600; }
.workspace-heading p:not(.eyebrow) { max-width: 490px; margin: 0; color: var(--muted); }
.counter { display: inline-block; margin-top: 12px; padding: 6px 12px; border-radius: 999px; background: var(--field); color: var(--muted); font-size: .76rem; white-space: nowrap; }
.card { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 22px 24px 0; }
.card-head h3 { margin: 0; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.card-body { padding: 18px 24px 24px; }
.card-kicker { font-size: .68rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice { border: 1px solid var(--line); background: var(--panel-2); color: var(--white); padding: 15px; border-radius: 12px; text-align: left; min-height: 84px; }
.choice:hover { border-color: #55555f; }
.choice.selected { border-color: var(--acid); box-shadow: inset 0 0 0 1px var(--acid); }
.choice strong { display: block; margin-bottom: 4px; }
.choice small { color: var(--muted); }

.field-stack { display: grid; gap: 15px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
label { display: grid; gap: 6px; color: #a9abb3; font-size: .76rem; font-weight: 500; }
input, textarea, select { width: 100%; border: 1px solid transparent; background: var(--field); color: #f2f2f4; border-radius: var(--r-field); padding: 13px 15px; font-size: .92rem; font-weight: 400; outline: none; transition: background .15s ease, border-color .15s ease; }
input::placeholder, textarea::placeholder { color: #6f717a; }
input:hover, textarea:hover, select:hover { background: var(--field-hover); }
textarea { min-height: 102px; resize: vertical; }
input:focus, textarea:focus, select:focus { background: var(--field-hover); border-color: rgba(246,160,68,.55); box-shadow: 0 0 0 3px rgba(246,160,68,.1); }
.field-note { font-size: .7rem; color: var(--muted); font-weight: 400; }
.swatches { display: flex; gap: 9px; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--panel); outline: 1px solid #4a4a51; }
.swatch.active { outline: 2px solid var(--white); }

.action-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 20px; }
.primary-button, .secondary-button { border-radius: var(--r-field); padding: 12px 18px; font-weight: 650; border: 0; }
.primary-button { background: var(--acid); color: white; }
.primary-button { color: #17120c; }
.primary-button:hover { background: #ffb45f; }
.primary-button:disabled { opacity: .46; cursor: not-allowed; }
.secondary-button { background: var(--field); color: var(--white); }
.secondary-button:hover { background: var(--field-hover); }
.fine-print { color: var(--muted); font-size: .72rem; }

.site-window { background: var(--paper); border-radius: var(--radius); color: #17201c; box-shadow: var(--shadow); overflow: clip; border: 1px solid #29292f; }
.browser-bar { height: 42px; background: #e9e8e3; display: flex; align-items: center; gap: 9px; padding: 0 14px; border-bottom: 1px solid #d4d3cd; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c6c5be; }
.address { margin-left: 6px; background: rgba(255,255,255,.7); border: 1px solid #d6d5cf; border-radius: 7px; padding: 4px 10px; font-size: .67rem; color: #777; flex: 1; text-align: center; }
.site-preview { --site-accent: #745236; --site-surface: #fefae0; --site-ink: #3d342b; --site-soft: #faedcd; background: var(--site-surface); color: var(--site-ink); min-height: 620px; }
.site-nav { min-height: 68px; padding: 11px 25px; display: flex; justify-content: space-between; align-items: center; gap: 18px; background: var(--site-surface); transition: background .25s ease, color .25s ease; }
.site-logo { border: 0; background: transparent; padding: 0; text-align: left; font-family: Georgia, "Noto Serif Thai", serif; font-size: 1.08rem; font-weight: 700; color: var(--site-ink); }
.site-logo img { display: block; width: auto; height: 42px; max-width: 180px; object-fit: contain; }
.site-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; column-gap: 15px; row-gap: 1px; color: var(--site-ink); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav-link { border: 0; border-bottom: 1px solid transparent; background: transparent; color: inherit; padding: 8px 0 6px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.site-nav-link:hover, .site-nav-link.active { border-color: var(--site-accent); color: var(--site-accent); }
.lang-toggle { background: var(--site-soft); border: 0; border-radius: 99px; padding: 5px; display: inline-flex; gap: 3px; }
.lang-toggle :is(button, a) { border: 0; border-radius: 99px; background: transparent; color: var(--site-ink); font-weight: 800; font-size: .68rem; padding: 6px 8px; }
.lang-toggle :is(button, a).active { background: var(--site-accent); color: white; }
.site-hero { min-height: 410px; position: relative; display: grid; align-items: end; padding: 38px; background-position: center; background-size: cover; transition: background-image .25s ease; }
.hero-copy { color: white; max-width: 450px; }
.hero-copy .overline { color: #dce8d9; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-copy h1 { font-family: Georgia, "Noto Serif Thai", serif; font-size: clamp(2rem, 3.4vw, 3.3rem); letter-spacing: -.035em; line-height: 1.02; margin: 10px 0 14px; font-weight: 500; }
.hero-copy p { max-width: 380px; color: #e0e7e1; font-size: .87rem; }
.site-cta { display: inline-block; margin-top: 10px; padding: 11px 15px; border: 0; border-radius: 4px; background: var(--site-accent); color: white; font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--site-soft); }
.service-item { background: var(--site-surface); color: var(--site-ink); padding: 25px; }
.service-item span { color: var(--site-accent); font-size: .67rem; font-weight: 900; }
.service-item h4 { font-family: Georgia, "Noto Serif Thai", serif; margin: 9px 0 6px; font-size: 1.05rem; }
.service-item p { font-size: .72rem; color: #69736e; margin: 0; }

/* Five deliberately different spa positions. Palette sets come from the current Coolors trending feed; dark support tones keep text and CTAs legible. */
.template-sand .hero-copy { padding-left: 3px; }
.template-sand .site-cta { border-radius: 99px; }
.template-sand .service-item:nth-child(2) { background: var(--site-soft); }

.template-forest .site-nav, .template-lotus .site-nav { background: var(--site-accent); }
.template-forest .site-logo, .template-forest .site-links, .template-lotus .site-logo, .template-lotus .site-links { color: white; }
.template-forest .lang-toggle, .template-lotus .lang-toggle { background: rgba(255,255,255,.16); }
.template-forest .lang-toggle :is(button, a), .template-lotus .lang-toggle :is(button, a) { color: white; }
.template-forest .lang-toggle :is(button, a).active, .template-lotus .lang-toggle :is(button, a).active { background: white; color: var(--site-accent); }
.template-forest .site-nav-link:hover, .template-forest .site-nav-link.active, .template-lotus .site-nav-link:hover, .template-lotus .site-nav-link.active { color: white; border-color: white; }
.template-forest .service-item { border-top: 4px solid var(--site-accent); }

.template-andaman .site-hero { align-items: end; justify-items: center; text-align: center; }
.template-andaman .hero-copy { max-width: 560px; }
.template-andaman .hero-copy p { margin-left: auto; margin-right: auto; }
.template-andaman .site-cta { border-radius: 99px; }
.template-andaman .service-item:nth-child(2) { background: var(--site-soft); }

.template-teak .hero-copy { max-width: 460px; padding: 24px; background: rgba(245,236,228,.94); color: var(--site-ink); box-shadow: 0 20px 55px rgba(38,23,16,.22); }
.template-teak .hero-copy .overline, .template-teak .hero-copy p { color: var(--site-ink); }
.template-teak .site-cta { border-radius: 0; }
.template-teak .service-item h4 { font-style: italic; }

.template-lotus .site-hero { justify-items: center; text-align: center; }
.template-lotus .hero-copy { max-width: 580px; }
.template-lotus .hero-copy p { margin-left: auto; margin-right: auto; }
.template-lotus .site-cta { border-radius: 99px; background: #f2e9e4; color: #22223b; }
.template-lotus .service-strip { background: #4a4e69; }
.template-lotus .service-item:nth-child(2) { background: var(--site-soft); }
.section-label-row { display: flex; justify-content: space-between; gap: 18px; margin: 25px 2px 10px; }
.section-label-row span { font-size: .78rem; font-weight: 800; }
.section-label-row small { color: var(--muted); }

.site-preview { position: relative; }
.site-burger { display: grid; gap: 5px; border: 0; background: transparent; padding: 9px; color: inherit; }
.site-burger i { display: block; width: 20px; height: 1px; background: currentColor; }
.site-mobile-burger { display: none; }
.hero-index { position: absolute; right: 28px; top: 24px; color: rgba(255,255,255,.72); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.hero-signals { position: absolute; right: 28px; bottom: 25px; display: grid; gap: 6px; color: white; text-align: right; font-size: .64rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.hero-signals span::before { content: "—"; margin-right: 7px; opacity: .55; }

.hero-layout-headerless .site-nav { position: absolute; inset: 0 0 auto; z-index: 3; background: transparent !important; color: white; }
.hero-layout-headerless .site-logo, .hero-layout-headerless .site-links { color: white !important; }
.hero-layout-headerless .site-nav { border-bottom: 1px solid rgba(255,255,255,.22); text-shadow: 0 1px 18px rgba(0,0,0,.72); }
.hero-layout-headerless .site-nav-link { color: white; border-bottom-color: transparent; }
.hero-layout-headerless .site-nav-link:hover, .hero-layout-headerless .site-nav-link.active { color: white; border-color: white; }
.hero-layout-headerless .site-hero { min-height: 500px; padding-top: 100px; }
.hero-layout-headerless .lang-toggle { background: rgba(0,0,0,.28); }
.hero-layout-headerless .lang-toggle :is(button, a) { color: white; }

.hero-layout-editorial .site-nav { position: absolute; inset: 0 0 auto; z-index: 3; justify-content: flex-start; background: transparent !important; color: white; }
.hero-layout-editorial .site-logo { position: absolute; left: 50%; transform: translateX(-50%); color: white !important; text-align: center; }
.hero-layout-editorial .site-links { margin-left: auto; color: white !important; }
.hero-layout-editorial .site-nav-link { display: none; }
.hero-layout-editorial .site-hero { min-height: 500px; padding-top: 100px; justify-items: center; text-align: center; }
.hero-layout-editorial .hero-copy { max-width: 600px; }
.hero-layout-editorial .hero-copy p { margin-left: auto; margin-right: auto; }
.hero-layout-editorial .hero-signals { left: 28px; right: auto; text-align: left; }
.hero-layout-editorial .lang-toggle { background: rgba(0,0,0,.3); }
.hero-layout-editorial .lang-toggle :is(button, a) { color: white; }
.site-drawer { position: absolute; z-index: 8; inset: 0 auto 0 0; width: min(420px, 78%); min-height: 100%; display: grid; grid-template-rows: auto auto 1fr auto; gap: 28px; padding: 24px 27px 32px; background: #0b0b0d; color: white; transform: translateX(-105%); transition: transform .28s ease; box-shadow: 30px 0 70px rgba(0,0,0,.3); }
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-open::after { content: ""; position: absolute; z-index: 7; inset: 0; background: rgba(0,0,0,.46); }
.drawer-close { justify-self: end; border: 0; background: transparent; color: white; font-size: 1.8rem; line-height: 1; }
.site-drawer > span { font-family: Georgia, "Noto Serif Thai", serif; font-size: 1.25rem; }
.site-drawer nav { display: grid; align-content: start; }
.site-drawer nav :is(button, a) { border: 0; border-bottom: 1px solid #303036; background: transparent; color: white; padding: 15px 0; text-align: left; font-size: 1rem; }
.site-drawer nav :is(button, a):hover { color: var(--site-accent); padding-left: 6px; }
.site-drawer small { color: #9898a0; }

.vertical-catalog { padding: 46px 38px 50px; background: var(--site-surface); }
.catalog-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 24px; }
.catalog-heading h2 { margin: 0; max-width: 560px; font-family: Georgia, "Noto Serif Thai", serif; font-size: clamp(1.6rem, 2.8vw, 2.8rem); font-weight: 500; line-height: 1; }
.catalog-heading > span { color: var(--site-accent); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.catalog-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.catalog-items article { position: relative; display: grid; align-content: start; min-height: 190px; padding: 22px; border: 1px solid var(--site-soft); }
.catalog-number { color: var(--site-accent); font-size: .65rem; font-weight: 900; }
.catalog-copy h4 { margin: 24px 0 7px; font-family: Georgia, "Noto Serif Thai", serif; font-size: 1.15rem; }
.catalog-copy p { min-height: 34px; margin: 0 0 21px; color: #68716c; font-size: .72rem; }
.catalog-items article > strong { margin-top: auto; color: var(--site-accent); font-size: .83rem; }
.catalog-items article > em { position: absolute; right: 15px; top: 15px; font-size: .58rem; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.catalog-note { margin: 14px 0 0; color: #737b77; font-size: .66rem; }

/* Each industry has a different information rhythm, not just a new palette. */

.vertical-layout-tours .site-hero { min-height: 470px; }
.vertical-layout-tours .catalog-items { counter-reset: trip; }
.vertical-layout-tours .catalog-items article { min-height: 220px; border: 0; border-radius: 4px; background: #e9f7f8; box-shadow: inset 0 5px 0 #006d77; }
.vertical-layout-tours .catalog-items article > strong { display: inline-block; width: fit-content; padding: 7px 9px; background: #006d77; color: white; }

.vertical-layout-food { --site-surface: #fffaf0; --site-ink: #342018; }
.vertical-layout-food .site-nav { border-bottom: 1px solid #342018; }
.vertical-layout-food .vertical-catalog { padding-top: 32px; }
.vertical-layout-food .catalog-heading { border-bottom: 3px double #7f5539; padding-bottom: 18px; }
.vertical-layout-food .catalog-items { grid-template-columns: 1fr; gap: 0; }
.vertical-layout-food .catalog-items article { grid-template-columns: 44px 1fr auto; min-height: 0; align-items: center; border: 0; border-bottom: 1px dashed #b08968; padding: 16px 2px; }
.vertical-layout-food .catalog-copy h4 { margin: 0 0 4px; font-style: italic; }
.vertical-layout-food .catalog-copy p { min-height: 0; margin: 0; }
.vertical-layout-food .catalog-items article > strong { margin: 0; font-size: 1rem; }

.vertical-layout-stay .site-hero { min-height: 540px; align-items: center; }
.vertical-layout-stay .hero-copy h1 { max-width: 620px; font-size: clamp(2.2rem, 4vw, 3.6rem); }

.vertical-layout-tattoo { --site-surface: #09090b; --site-ink: #f4f0ea; --site-soft: #25252a; --site-accent: #d8ff38; }
.vertical-layout-tattoo .site-nav { border-bottom: 1px solid #343438; background: #09090b !important; }
.vertical-layout-tattoo .site-logo, .vertical-layout-tattoo .site-links { color: #f4f0ea !important; }
.vertical-layout-tattoo .vertical-catalog { background: #09090b; color: #f4f0ea; }
.vertical-layout-tattoo .site-logo { font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.vertical-layout-tattoo .hero-copy h1 { max-width: 640px; font-family: Arial, sans-serif; font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -.04em; line-height: .95; }
.vertical-layout-tattoo .site-cta { border-radius: 0; background: #d8ff38; color: #09090b; }
.vertical-layout-tattoo .catalog-heading h2, .vertical-layout-tattoo .catalog-copy h4 { font-family: Arial, sans-serif; text-transform: uppercase; font-weight: 900; }
.vertical-layout-tattoo .catalog-items article { min-height: 230px; border-color: #37373d; }
.vertical-layout-tattoo .catalog-items article:nth-child(2) { transform: rotate(-1.2deg); background: #151519; }
.vertical-layout-tattoo .catalog-copy p, .vertical-layout-tattoo .catalog-note { color: #a7a7ad; }

.vertical-layout-aircon { --site-surface: #f6fbfc; --site-ink: #102f36; --site-soft: #d9eef1; }
.vertical-layout-aircon .site-nav { border-bottom: 4px solid #006d77; }
.vertical-layout-aircon .hero-copy h1 { font-family: Arial, sans-serif; font-weight: 800; letter-spacing: -.055em; }
.vertical-layout-aircon .catalog-heading h2 { font-family: Arial, sans-serif; font-weight: 800; }
.vertical-layout-aircon .catalog-items article { border: 0; border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(0,60,70,.08); }
.vertical-layout-aircon .catalog-number { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #006d77; color: white; }

.vertical-layout-cannabis { --site-surface: #111b16; --site-ink: #edf3eb; --site-soft: #26382d; --site-accent: #b7d48a; }
.vertical-layout-cannabis .site-nav { border-bottom: 1px solid #33483a; background: #111b16 !important; }
.vertical-layout-cannabis .site-logo, .vertical-layout-cannabis .site-links { color: #edf3eb !important; }
.vertical-layout-cannabis .vertical-catalog { border-top: 6px solid #b7d48a; background: #111b16; color: #edf3eb; }
.vertical-layout-cannabis .catalog-heading { position: relative; padding-top: 23px; }
.vertical-layout-cannabis .catalog-items article { border-color: #34483a; background: #17241c; }
.vertical-layout-cannabis .catalog-copy p, .vertical-layout-cannabis .catalog-note { color: #aebcaf; }
.vertical-layout-cannabis .catalog-items article > strong { border: 1px solid #b7d48a; width: fit-content; padding: 6px 8px; }

.catalog-editor { display: grid; gap: 9px; border-radius: 14px; padding: 14px; background: var(--surface); }
.catalog-editor-head { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.catalog-editor-head strong, .catalog-editor-head span { display: block; }
.catalog-editor-head span { margin-top: 3px; color: var(--muted); font-size: .67rem; }
.catalog-editor-head em { color: var(--acid); font-size: .62rem; font-style: normal; text-align: right; }
.catalog-editor-row { display: grid; grid-template-columns: 24px 1fr 1fr .8fr; gap: 7px; align-items: end; border-top: 1px solid var(--hairline); padding-top: 9px; }
.catalog-editor-row > span { align-self: center; color: var(--acid); font-size: .65rem; }
.catalog-editor-row label { font-size: .63rem; }
.catalog-editor-row input { padding: 9px; font-size: .69rem; }

.site-section-kicker { margin: 0 0 9px; color: var(--site-accent); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.site-story { padding: 58px 38px; }
.site-story h2 { max-width: 760px; }
.site-story h2, .site-contact h3, .site-gallery h2 { margin: 0; font-family: Georgia, "Noto Serif Thai", serif; font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.04; font-weight: 500; }
.site-gallery { padding: 52px 38px; background: var(--site-soft); }
.site-section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.site-section-head > span { font-size: .7rem; color: var(--site-accent); font-weight: 800; }
.site-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.site-gallery-grid img { display: block; width: 100%; aspect-ratio: 1 / .8; object-fit: cover; border-radius: 3px; }
.site-gallery-grid img:nth-child(2n) { object-position: 70% center; }
.site-gallery-grid img:nth-child(3n) { object-position: 30% center; }
.gallery-placeholder { position: relative; display: flex; align-items: end; min-height: 145px; padding: 13px; overflow: hidden; background: linear-gradient(135deg, var(--site-accent), var(--site-ink)); color: white; }
.gallery-placeholder::before { content: ""; position: absolute; width: 120px; height: 120px; right: -25px; top: -30px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.gallery-placeholder span { position: relative; font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.placeholder-tours { background: linear-gradient(145deg, #004d5a, #36a7b4); }
.placeholder-food { background: linear-gradient(145deg, #5d2d1d, #d4a373); }
.placeholder-stay { background: linear-gradient(145deg, #22223b, #9a8c98); }
.placeholder-tattoo { background: repeating-linear-gradient(120deg, #0b0b0d 0 24px, #242429 25px 27px); }
.placeholder-aircon { background: linear-gradient(145deg, #006d77, #a7dfe3); }
.placeholder-cannabis { background: linear-gradient(145deg, #17241c, #588157); }
.site-contact { padding: 64px 38px; background: var(--site-ink); color: var(--site-surface); }
.site-contact > div { display: flex; gap: 20px; flex-wrap: wrap; margin: 20px 0 10px; color: var(--site-soft); font-size: .78rem; }
.site-contact strong { color: white; }
.site-inner-hero { padding: 82px 38px 55px; background: var(--site-soft); }
.site-inner-hero.compact { padding-bottom: 40px; }
.site-inner-hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Noto Serif Thai", serif; font-size: clamp(2.2rem, 5vw, 5rem); line-height: .95; font-weight: 500; letter-spacing: -.045em; }
.site-inner-hero > p:last-child { max-width: 570px; color: #667069; }
.site-detail-list { padding: 20px 38px 60px; }
.site-detail-list article { display: grid; grid-template-columns: 45px 1fr auto; gap: 20px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--site-soft); }
.site-detail-list article > span { color: var(--site-accent); font-size: .7rem; }
.site-detail-list h3 { margin: 0 0 5px; font-family: Georgia, serif; }
.site-detail-list p { margin: 0; color: #69736e; font-size: .78rem; }
.site-detail-list strong { color: var(--site-accent); font-size: .7rem; }
.site-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; padding: 45px 38px 65px; align-items: center; }
.site-editorial img { width: 100%; min-height: 360px; object-fit: cover; }
.site-editorial h3 { font: 500 2rem/1.05 Georgia, serif; }
.site-editorial p { color: #667069; }
.page-gallery { background: var(--site-surface); }
.site-package-grid, .site-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 40px 38px 65px; }
.site-package-grid article, .site-quotes blockquote { margin: 0; padding: 26px; background: var(--site-soft); border-radius: 5px; }
.site-package-grid span { color: var(--site-accent); font-size: .68rem; }
.site-package-grid h3 { font-family: Georgia, serif; }
.site-package-grid p, .site-quotes { color: #667069; font-size: .78rem; }
.site-package-grid button { border: 0; background: var(--site-accent); color: white; padding: 9px 12px; }
.site-quotes blockquote { color: var(--site-ink); font: 500 1.15rem/1.45 Georgia, serif; }
.site-quotes span { display: block; margin-top: 18px; color: #79817c; font: 700 .65rem/1.2 sans-serif; text-transform: uppercase; }
.site-faq { padding: 35px 38px 65px; }
.site-faq details { border-bottom: 1px solid var(--site-soft); padding: 18px 0; }
.site-faq summary { cursor: pointer; font-weight: 800; }
.site-faq p { color: #667069; }
.gallery-upload-head { display: flex; justify-content: space-between; gap: 10px; align-items: start; }
.compact-button { padding: 7px 9px; font-size: .7rem; }
.editor-layout .site-window { max-height: 820px; overflow: auto; }

.language-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.language-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.language-card .card-head strong { font-size: 1.15rem; }
.completeness { color: var(--acid); font-size: .72rem; }

.pipeline { display: grid; grid-template-columns: repeat(5, minmax(115px, 1fr)); gap: 32px; padding: 50px 20px; position: relative; }
.pipeline::before { content: ""; height: 1px; background: #393940; position: absolute; left: 8%; right: 8%; top: 90px; }
.pipeline-node { position: relative; z-index: 1; text-align: center; color: var(--muted); }
.node-box { width: 76px; height: 76px; margin: 0 auto 14px; border: 1px solid transparent; background: var(--field); border-radius: 17px; display: grid; place-items: center; color: var(--white); font-size: 1.25rem; transition: .25s ease; }
.pipeline-node.running .node-box { border-color: var(--acid); box-shadow: 0 0 0 8px rgba(246,160,68,.06); }
.pipeline-node.done .node-box { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.pipeline-node strong { color: var(--white); display: block; font-size: .82rem; }
.pipeline-node small { display: block; font-size: .69rem; margin-top: 5px; }
.log-panel { background: #08080a; color: #b9f47b; border-radius: 14px; font: .78rem/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; padding: 18px; min-height: 150px; }
.log-line { display: block; color: #7f8a81; }
.log-line:last-child { color: var(--acid); }

.preview-stage { position: relative; }
.preview-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 14px; }
.preview-toolbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.fullscreen-toggle { padding: 8px 11px; font-size: .72rem; white-space: nowrap; }
body.preview-mode-open { overflow: hidden; }
.preview-stage.is-expanded { position: fixed; z-index: 200; inset: 0; overflow: auto; background: #090a0d; }
.preview-stage.is-expanded .preview-toolbar { position: sticky; z-index: 25; top: 0; min-height: 58px; margin: 0; padding: 9px 16px; border-bottom: 1px solid var(--line); background: rgba(9,10,13,.96); backdrop-filter: blur(16px); }
.preview-stage.is-expanded .device-frame:not(.mobile) { width: 100%; max-width: none; margin: 0; }
.preview-stage.is-expanded .site-window { min-height: calc(100vh - 58px); border: 0; border-radius: 0; box-shadow: none; }
.preview-stage.is-expanded .site-preview { min-height: calc(100vh - 100px); }
.preview-stage.is-expanded .device-frame.mobile { padding: 22px 0 60px; }
.segmented { padding: 4px; border-radius: var(--r-field); display: inline-flex; background: var(--field); }
.segmented button { background: transparent; border: 0; color: var(--muted); padding: 7px 12px; border-radius: 9px; font-size: .76rem; font-weight: 600; }
.segmented button.active { background: rgba(255,255,255,.1); color: var(--white); }
.device-frame.mobile { max-width: 430px; margin: 0 auto; }
.device-frame.mobile .site-nav { gap: 10px; padding: 10px 16px; }
.device-frame.mobile .site-logo { max-width: 190px; }
.device-frame.mobile .site-links { margin-left: auto; flex-wrap: nowrap; gap: 6px; }
.device-frame.mobile .site-nav-link { display: none; }
.device-frame.mobile .lang-toggle { display: inline-flex; }
.device-frame.mobile .site-mobile-burger { display: grid; order: 3; }
.device-frame.mobile .hero-layout-headerless .site-nav { align-items: flex-start; flex-wrap: wrap; gap: 8px 14px; padding-bottom: 10px; }
.device-frame.mobile .hero-layout-headerless .site-links { display: flex; order: 3; width: 100%; flex-wrap: nowrap; justify-content: flex-start; gap: 16px; overflow-x: auto; scrollbar-width: none; }
.device-frame.mobile .hero-layout-headerless .site-links::-webkit-scrollbar { display: none; }
.device-frame.mobile .hero-layout-headerless .site-nav-link { display: block; flex: 0 0 auto; }
.device-frame.mobile .hero-layout-headerless .lang-toggle { position: absolute; top: 10px; right: 16px; }
.device-frame.mobile .site-hero { min-height: 520px; padding: 27px; }
.device-frame.mobile .service-strip { grid-template-columns: 1fr; }

.editor-layout { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 18px; align-items: start; }
.upload-zone { border: 1px dashed rgba(255,255,255,.14); background: transparent; padding: 18px; border-radius: var(--r-field); text-align: center; color: var(--muted); }
.upload-zone input { margin-top: 12px; font-size: .72rem; }
.logo-upload-zone { text-align: left; }
.asset-report { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.asset-report span { background: var(--field); border-radius: 999px; padding: 5px 8px; color: #ffad59; font-size: .66rem; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.evidence-card { background: var(--surface); border-radius: 14px; padding: 18px; }
.evidence-card h4 { margin: 7px 0 8px; font-size: .93rem; }
.evidence-card p, .evidence-card li, .evidence-card small { color: var(--muted); font-size: .72rem; }
.evidence-card p { margin: 0; }
.evidence-card ul { padding-left: 17px; margin: 7px 0; }
.evidence-label { color: var(--acid); font-size: .61rem; letter-spacing: .11em; }
.proof-panel { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 16px; padding: 18px 22px; border-radius: var(--radius); background: var(--surface); }
.proof-panel strong { display: block; margin-top: 6px; }
.proof-panel p { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
.approval-check { display: flex; align-items: center; gap: 9px; white-space: nowrap; border-radius: var(--r-field); background: var(--field); padding: 10px 14px; color: var(--white); }
.approval-check input { width: auto; accent-color: var(--acid); }

.success-card { text-align: center; padding: 68px 30px; background: var(--surface); border-radius: var(--radius); }
.success-icon { width: 88px; height: 88px; margin: 0 auto 24px; border-radius: 24px; display: grid; place-items: center; background: var(--acid); color: var(--ink); font-size: 2.2rem; transform: rotate(-4deg); }
.success-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; margin: 0 auto 18px; max-width: 800px; }
.success-card > p { color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.url-card { display: inline-flex; gap: 12px; align-items: center; background: var(--field); border-radius: var(--r-field); padding: 11px 16px; color: #d9d9df; }
.url-card code { color: var(--acid); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 700px; margin: 38px auto 0; border-top: 1px solid var(--line); }
.metric { padding: 24px 15px; }
.metric strong { display: block; font-size: 1.65rem; }
.metric span { color: var(--muted); font-size: .74rem; }

.toast { position: fixed; right: 24px; bottom: 24px; background: var(--white); color: var(--ink); padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow); font-size: .8rem; font-weight: 700; transform: translateY(120px); transition: transform .25s ease; z-index: 100; }
.toast.show { transform: translateY(0); }

/* Product shell: restrained B2B SaaS language, separate from customer-site themes. */
.brand b, .completeness, .catalog-editor-head em, .catalog-editor-row > span, .evidence-label, .url-card code { color: #ffad59; }
.toast { border-radius: var(--r-field); }

.choice.selected { border-color: #4b4032; background: #29251f; box-shadow: inset 3px 0 0 var(--acid); }
.pipeline-node.running .node-box { border-color: var(--acid); box-shadow: 0 0 0 5px rgba(246,160,68,.11); }
.pipeline-node.done .node-box, .success-icon { background: var(--acid); color: #17120c; border-color: var(--acid); }
.success-icon { border-radius: 14px; transform: none; }
.log-panel { background: #080c14; color: #c8ced9; }
.log-line:last-child { color: #ffad59; }
.asset-report span { color: #ffad59; }
.approval-check input { accent-color: var(--acid); }

.site-preview { font-family: var(--site-body); }
/* On the published site the preview's buttons are links; they look the same. */
.site-logo, .site-nav-link, .lang-toggle a, .site-drawer nav a, .footer-nav a, .site-drawer .drawer-close { text-decoration: none; }
.lang-toggle a { display: inline-block; }
.site-preview .site-logo,
.site-preview .site-drawer > span,
.site-preview .hero-copy h1,
.site-preview .service-item h4,
.site-preview .catalog-heading h2,
.site-preview .catalog-copy h4,
.site-preview .site-story h2,
.site-preview .site-contact h3,
.site-preview .site-gallery h2,
.site-preview .site-inner-hero h1,
.site-preview .site-detail-list h3,
.site-preview .site-editorial h3,
.site-preview .site-package-grid h3,
.site-preview .site-quotes blockquote { font-family: var(--site-heading); }

/* Step 1 builder: a narrow choice panel beside a large live preview, like a theme editor. */
.workspace.is-builder { padding: 0; }
.builder { display: grid; grid-template-columns: 340px minmax(0, 1fr); height: calc(100vh - var(--topbar-h)); height: calc(100dvh - var(--topbar-h)); }
.builder-panel { display: flex; flex-direction: column; min-height: 0; border-right: 1px solid var(--hairline); background: #121317; }
.builder-panel-body { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 22px 20px 16px; }
.builder-panel-body h2 { margin: 6px 0 4px; font-size: 1.5rem; line-height: 1.15; letter-spacing: -.03em; font-weight: 600; }
.builder-cue { margin: 0 0 16px; color: var(--muted); font-size: .82rem; }
.builder-subhead { margin: 24px 0 4px; font-size: .95rem; }
.builder-panel-foot { display: flex; gap: 8px; padding: 12px 20px; border-top: 1px solid var(--hairline); }
.builder-panel-foot .primary-button { flex: 1; }
.builder-panel-foot .secondary-button:disabled { opacity: .35; cursor: not-allowed; }
.builder-fields { display: grid; gap: 12px; }
.builder-fields.two { grid-template-columns: 1fr 1fr; align-items: end; }
.builder-fields + .field-note { margin: 10px 0 0; }

.opt-list { display: grid; gap: 6px; }
.opt { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 56px; padding: 10px 14px; border: 1px solid transparent; border-radius: 14px; background: rgba(255,255,255,.04); color: var(--white); text-align: left; transition: background .15s ease, border-color .15s ease; }
.opt:hover { background: var(--field-hover); }
.opt.selected { border-color: rgba(246,160,68,.5); background: rgba(246,160,68,.09); }
.opt-icon { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.06); color: #ffad59; }
.opt-copy { flex: 1; min-width: 0; }
.opt-copy strong { display: block; font-size: .88rem; font-weight: 600; line-height: 1.3; }
.opt-copy small { display: block; margin-top: 2px; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.opt-palette { flex-direction: column; align-items: stretch; gap: 9px; padding: 10px 12px 11px; }
.opt-swatch { display: grid; grid-template-columns: repeat(5, 1fr); height: 30px; border-radius: 8px; overflow: hidden; }
.opt-type { flex: 0 0 66px; font-family: var(--sample-heading); font-size: 1.4rem; line-height: 1; }
.opt-type i { font-style: normal; font-size: .95rem; color: var(--muted); }
.opt-price { flex: 0 0 auto; text-align: right; }
.opt-price b { display: block; font-size: 1.02rem; }
.opt-price small { color: var(--muted); font-size: .68rem; }
.opt-badge { margin-left: 6px; padding: 1px 5px; border-radius: 3px; background: var(--acid); color: #17120c; font-style: normal; font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: 2px; }
.opt-saving { color: #ffad59; }
.term-toggle { display: flex; width: 100%; margin-bottom: 10px; }
.term-toggle button { flex: 1; }
.term-toggle button.active { background: var(--acid); color: #17120c; }

.builder-outline { list-style: none; margin: 24px 0 0; padding: 14px 0 0; border-top: 1px solid var(--hairline); display: grid; gap: 2px; }
.builder-outline button { width: 100%; display: grid; grid-template-columns: 24px auto minmax(0, 1fr); align-items: center; gap: 10px; padding: 8px 10px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); text-align: left; font-size: .8rem; }
.builder-outline button:hover, .builder-outline button.active { background: #202127; color: var(--white); }
.outline-mark { width: 22px; height: 22px; display: grid; place-items: center; background: rgba(255,255,255,.06); border-radius: 7px; font-size: .68rem; }
.builder-outline button.active .outline-mark { background: var(--acid); border-color: var(--acid); color: #17120c; }
.outline-value { overflow: hidden; color: #cdced3; text-align: right; text-overflow: ellipsis; white-space: nowrap; }

.builder-stage { min-width: 0; min-height: 0; overflow-y: auto; padding: 14px 22px 40px; background: #0d0e12; }
.builder-stage .preview-toolbar { margin-bottom: 12px; }
.builder-stage.is-expanded { padding: 0; }

.label-row { display: flex; justify-content: space-between; gap: 10px; }
.char-count { color: var(--muted); font-size: .7rem; font-weight: 400; font-variant-numeric: tabular-nums; }

/* Live step: the domain card. */
.domain-card { max-width: 620px; margin: 22px auto 0; padding: 18px 20px; border-radius: 16px; background: var(--surface); text-align: left; }
.domain-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.domain-badge { padding: 3px 9px; border-radius: 99px; background: rgba(111, 207, 151, .14); color: #8fe0b0; font-size: .68rem; font-weight: 700; }
.domain-badge.is-live { background: rgba(255, 118, 111, .16); color: var(--danger); }
.domain-list { display: grid; gap: 4px; }
.domain-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--hairline); font-size: .86rem; }
.domain-row strong { overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.domain-row span { color: #d8d8de; font-variant-numeric: tabular-nums; }
.domain-row.is-taken strong, .domain-row.is-taken span { color: var(--muted); font-weight: 400; }
.domain-search { display: flex; gap: 8px; margin-top: 12px; }
.domain-confirm p { margin: 0 0 8px; }
.domain-done { margin: 0 0 10px; }
.domain-note { margin: 0; padding: 12px 14px; border-radius: var(--r-field); background: rgba(246, 160, 68, .1); color: #f3d9b8; font-size: .82rem; }
.domain-error { margin: 0; color: #ffb4ae; font-size: .84rem; }
.domain-hosting { margin: 0 0 10px; color: var(--muted); font-size: .84rem; }
.domain-hosting.is-live { color: #8fe0b0; }
.domain-hosting a { color: inherit; }

/* Content step: contact, social channels and the account holder. */
.content-cards { display: grid; gap: 8px; margin-top: 28px; }
.content-cards .card { background: transparent; border-radius: 0; border-top: 1px solid var(--hairline); overflow: visible; }
.content-cards .card-head { padding: 22px 0 0; }
.content-cards .card-head h3 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.content-cards .card-body { padding: 16px 0 12px; }
.card-note { color: var(--muted); font-size: .74rem; }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: start; }
.optional { color: var(--muted); font-weight: 400; }
.field-error { min-height: 0; color: var(--danger); font-size: .7rem; font-weight: 500; }
.field-error:empty { display: none; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); }
.content-cards + .action-row { margin-top: 18px; }

/* Footer of the generated site: the same on every page. */
.site-footer { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 28px 40px; padding: 44px 48px 28px; background: var(--site-soft); color: var(--site-ink); border-top: 1px solid color-mix(in srgb, var(--site-ink) 12%, transparent); font-size: .82rem; }
.footer-brand { display: grid; gap: 4px; align-content: start; }
.footer-brand strong { font-family: var(--site-heading); font-size: 1.25rem; margin-bottom: 6px; }
.footer-brand span { opacity: .78; }
.footer-brand a, .footer-social a { color: var(--site-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.footer-brand a { margin-top: 8px; }
.footer-nav, .footer-social { display: grid; gap: 8px; align-content: start; }
.footer-nav :is(button, a) { padding: 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; opacity: .85; }
.footer-nav :is(button, a):hover { opacity: 1; text-decoration: underline; }
.footer-legal { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 16px; border-top: 1px solid color-mix(in srgb, var(--site-ink) 12%, transparent); opacity: .6; font-size: .72rem; }
.device-frame.mobile .site-footer { grid-template-columns: 1fr 1fr; padding: 32px 24px 22px; }
.device-frame.mobile .footer-brand { grid-column: 1 / -1; }

/* Business-type recipes. Spa: calm, airy, light serif, a quiet treatment list. */
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.hero-actions .site-cta { margin-top: 0; }
.vertical-layout-spa .hero-copy h1 { font-weight: 400; letter-spacing: -.02em; }
.vertical-layout-spa .vertical-catalog, .vertical-layout-spa .site-story, .vertical-layout-spa .site-gallery { padding-top: 80px; padding-bottom: 80px; }
.vertical-layout-spa .catalog-heading { justify-content: center; text-align: center; }
.vertical-layout-spa .catalog-heading h2 { font-weight: 400; }
.vertical-layout-spa .catalog-items { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; gap: 0; }
.vertical-layout-spa .catalog-items article { grid-template-columns: 1fr auto; align-items: baseline; min-height: 0; padding: 20px 0; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--site-ink) 14%, transparent); border-radius: 0; }
.vertical-layout-spa .catalog-number { display: none; }
.vertical-layout-spa .catalog-copy h4 { margin: 0 0 4px; font-weight: 500; font-size: 1.2rem; }
.vertical-layout-spa .catalog-copy p { min-height: 0; margin: 0; }
.vertical-layout-spa .catalog-items article > strong { margin: 0; font-size: .95rem; font-weight: 600; color: var(--site-ink); }
.vertical-layout-spa .catalog-note, .vertical-layout-spa .catalog-cta { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.vertical-layout-spa .site-story { text-align: center; }
.vertical-layout-spa .site-story h2 { margin: 0 auto; font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.4rem); line-height: 1.25; }
.site-promise { padding: 44px 38px; background: var(--site-surface); border-top: 1px solid color-mix(in srgb, var(--site-ink) 10%, transparent); }
.site-promise ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; margin: 0; padding: 0; list-style: none; color: var(--site-ink); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.site-promise li::before { content: "·"; margin-right: 10px; color: var(--site-accent); }

/* Tattoo: dark, portfolio before prices, a clear three-step process. */
.vertical-layout-tattoo .catalog-items article:nth-child(2) { transform: none; }
.site-portfolio { padding: 52px 38px; background: #09090b; color: #f4f0ea; }
.site-portfolio h2 { margin: 0; font-family: var(--site-heading); font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; line-height: 1; }
.style-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.style-chips span { padding: 6px 12px; border: 1px solid #3a3a40; border-radius: 99px; color: #cfcfd4; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.portfolio-grid figure { position: relative; margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: #151519; }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-placeholder { background: repeating-linear-gradient(135deg, #141417 0 14px, #18181c 14px 15px) !important; }
.portfolio-grid figcaption { position: absolute; left: 10px; bottom: 10px; padding: 4px 8px; background: #09090b; color: #d8ff38; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-process { padding: 56px 38px; background: #111114; color: #f4f0ea; }
.site-process h2 { margin: 0 0 24px; font-family: var(--site-heading); font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; line-height: 1; }
.site-process ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.site-process li { counter-increment: step; padding: 20px; border: 1px solid #2c2c32; }
.site-process li::before { content: "0" counter(step); display: block; margin-bottom: 14px; color: #d8ff38; font-family: var(--site-heading); font-size: 2rem; line-height: 1; }
.site-process h3 { margin: 0 0 6px; font-size: .95rem; text-transform: uppercase; letter-spacing: .02em; }
.site-process p { margin: 0; color: #a7a7ad; font-size: .8rem; }
.vertical-layout-tattoo .site-story { background: #09090b; color: #f4f0ea; }
.vertical-layout-tattoo .site-story h2 { font-family: var(--site-heading); text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.1; }
.vertical-layout-tattoo .site-visit { background: #d8ff38; color: #09090b; }
.vertical-layout-tattoo .site-visit .site-cta { background: #09090b; color: #d8ff38; }
.vertical-layout-tattoo .site-visit .site-cta.secondary { background: transparent; color: #09090b; }
.vertical-layout-tattoo .site-footer { background: #09090b; color: #f4f0ea; }

/* Food: dense and direct; the menu, then how to get here. */
.vertical-layout-food .vertical-catalog, .vertical-layout-food .site-gallery, .vertical-layout-food .site-story { padding-top: 36px; padding-bottom: 36px; }
.vertical-layout-food .catalog-heading h2 { font-weight: 800; letter-spacing: -.03em; }
.vertical-layout-food .catalog-copy h4 { font-style: normal; font-weight: 700; }
.vertical-layout-food .catalog-items article > strong { font-size: 1.1rem; font-weight: 800; }
.vertical-layout-food .site-visit { padding-top: 44px; padding-bottom: 44px; }
.vertical-layout-food .site-story h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.2; }

/* A menu on a light photo gets a soft dark fade behind it (menuShade). */
.menu-shade.hero-layout-headerless .site-nav, .menu-shade.hero-layout-editorial .site-nav { background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.2) 70%, rgba(0,0,0,0)) !important; border-bottom: 0; }

/* Catalog photos: cards get the photo on top; list types (spa, food) a small square beside the name. */
.catalog-image { display: block; width: calc(100% + 44px); max-width: none; margin: -22px -22px 16px; aspect-ratio: 4 / 3; object-fit: cover; }
.vertical-layout-spa .catalog-items article.has-photo, .vertical-layout-food .catalog-items article.has-photo { grid-template-columns: 72px 1fr auto; column-gap: 16px; }
.vertical-layout-food .catalog-items article.has-photo { grid-template-columns: 72px 44px 1fr auto; }
.vertical-layout-spa .catalog-image, .vertical-layout-food .catalog-image { width: 72px; height: 72px; margin: 0; aspect-ratio: 1; border-radius: 8px; }
.vertical-layout-spa .catalog-items article.has-photo, .vertical-layout-food .catalog-items article.has-photo { align-items: center; }
.vertical-layout-spa .catalog-image { border-radius: 50%; }
.catalog-image-empty { display: grid; place-items: center; background: color-mix(in srgb, var(--site-accent) 12%, var(--site-surface)); color: var(--site-accent); font-size: 1.6rem; }

/* Mini editor: catalog rows with a photo slot and row actions. */
.catalog-editor-row { grid-template-columns: 1fr 1fr .8fr; }
.catalog-editor.with-photos .catalog-editor-row { grid-template-columns: 56px 1fr 1fr .8fr; }
.check-row { display: flex; align-items: center; gap: 9px; color: #d8d8de; font-size: .8rem; font-weight: 500; }
.check-row input { width: auto; accent-color: var(--acid); }
.catalog-photo { position: relative; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 10px; background: var(--field); color: var(--muted); font-size: .62rem; cursor: pointer; overflow: hidden; align-self: end; }
.catalog-photo img { width: 100%; height: 100%; object-fit: cover; }
.catalog-photo input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.catalog-row-actions { grid-column: 1 / -1; display: flex; gap: 8px; justify-content: flex-end; }
.ghost-mini { border: 0; background: none; color: var(--muted); font-size: .7rem; padding: 2px 4px; cursor: pointer; }
.ghost-mini:hover:not(:disabled) { color: var(--white); text-decoration: underline; }
.ghost-mini:disabled { opacity: .35; cursor: not-allowed; }
#catalogAdd { justify-self: start; margin-top: 6px; }

/* Tours: trip facts as chips; pickup areas and what is included. */
.trip-facts { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 18px; padding: 0; list-style: none; }
.trip-facts li { padding: 4px 9px; border-radius: 99px; background: color-mix(in srgb, var(--site-accent) 12%, white); color: var(--site-ink); font-size: .7rem; font-weight: 600; }
.site-tripinfo { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; padding: 56px 38px; background: var(--site-soft); color: var(--site-ink); }
.site-tripinfo h2, .site-perks h2, .site-distances h2, .site-areas h2 { margin: 0 0 18px; font-family: var(--site-heading); font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 600; line-height: 1.1; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chip-list li { padding: 8px 14px; border-radius: 99px; background: var(--site-surface); color: var(--site-ink); font-size: .82rem; font-weight: 600; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: .9rem; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--site-accent); font-weight: 800; }

/* Stay: rooms as an editorial list; book-direct perks; distances. */
.vertical-layout-stay .catalog-items { grid-template-columns: 1fr; gap: 0; }
.vertical-layout-stay .catalog-items article { grid-template-columns: 1fr auto; align-items: baseline; min-height: 0; padding: 26px 0; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--site-ink) 14%, transparent); }
.vertical-layout-stay .catalog-number { display: none; }
.vertical-layout-stay .catalog-copy h4 { margin: 0 0 6px; font-family: var(--site-heading); font-size: 1.6rem; font-weight: 500; }
.vertical-layout-stay .catalog-copy p { min-height: 0; margin: 0; }
.vertical-layout-stay .catalog-items article > strong { margin: 0; color: var(--site-ink); font-size: .95rem; font-weight: 600; }
.vertical-layout-stay .catalog-items article.has-photo { grid-template-columns: 160px 1fr auto; column-gap: 22px; align-items: center; }
.vertical-layout-stay .catalog-image { width: 160px; margin: 0; aspect-ratio: 4 / 3; border-radius: 6px; }
.site-perks { padding: 64px 38px; background: var(--site-soft); color: var(--site-ink); }
.site-perks ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; counter-reset: perk; }
.site-perks li { counter-increment: perk; font-size: .95rem; line-height: 1.45; }
.site-perks li::before { content: "0" counter(perk); display: block; margin-bottom: 10px; color: var(--site-accent); font-family: var(--site-heading); font-size: 1.8rem; }
.site-distances { display: grid; grid-template-columns: 1fr 1.2fr; gap: 34px; align-items: start; padding: 64px 38px; background: var(--site-surface); color: var(--site-ink); }
.site-distances dl { margin: 0; }
.site-distances dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--site-ink) 14%, transparent); }
.site-distances dt { font-weight: 500; }
.site-distances dd { margin: 0; color: var(--site-accent); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Aircon: a strong promise band and the areas covered. */
.site-trust { padding: 16px 38px; background: var(--site-accent); color: #fff; }
.site-trust ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; margin: 0; padding: 0; list-style: none; font-size: .82rem; font-weight: 700; }
.site-trust li::before { content: "✓"; margin-right: 8px; }
.site-areas { padding: 48px 38px; background: var(--site-soft); color: var(--site-ink); }
.site-areas .chip-list li { background: #fff; }

/* Cannabis: calm steps and a plain licence notice. */
.site-process.steps-calm { background: var(--site-surface); color: var(--site-ink); }
.site-process.steps-calm li { border-color: color-mix(in srgb, var(--site-ink) 18%, transparent); }
.site-process.steps-calm li::before { color: var(--site-accent); }
.site-process.steps-calm h2, .site-process.steps-calm h3 { text-transform: none; letter-spacing: 0; }
.site-process.steps-calm h2 { font-weight: 500; }
.site-process.steps-calm p { color: color-mix(in srgb, var(--site-ink) 72%, transparent); }
.site-notice { padding: 36px 38px; background: var(--site-soft); color: var(--site-ink); font-size: .88rem; }
.site-notice p:last-child { margin-bottom: 0; opacity: .8; }

/* Step 3 texts: the price on the photo, the about page, the reviews page. */
.hero-price { display: inline-block; margin: -4px 0 16px; padding: 6px 12px; border-radius: 99px; background: rgba(0, 0, 0, .32); color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .01em; }
.template-teak .hero-price { background: var(--site-soft); color: var(--site-ink); }
.site-story-text { margin: 0 0 20px; font-family: var(--site-heading); font-size: 1.35rem; line-height: 1.35; }
.site-editorial .check-list { margin-bottom: 22px; }
.site-reviews-list { padding: 60px 38px; background: var(--site-surface); color: var(--site-ink); }
.site-reviews-list h2 { margin: 0 0 22px; font-family: var(--site-heading); font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.review-grid blockquote { margin: 0; padding: 22px; border-radius: 14px; background: var(--site-soft); }
.review-grid blockquote p { margin: 0 0 14px; font-family: var(--site-heading); font-size: 1.05rem; line-height: 1.45; }
.review-grid footer { font-size: .78rem; font-weight: 700; opacity: .75; }
.reviews-link { display: inline-block; margin-top: 18px; color: var(--site-ink); font-size: .84rem; font-weight: 700; }
.device-frame.mobile .site-reviews-list { padding-left: 22px; padding-right: 22px; }
.site-reviews { display: grid; gap: 26px; justify-items: start; padding: 20px 38px 60px; background: var(--site-soft); color: var(--site-ink); }

/* The preview's phone frame is not a narrow viewport, so repeat the phone rules here. */
.device-frame.mobile .hero-copy h1 { font-size: 2.05rem; }
.device-frame.mobile .vertical-layout-tattoo .hero-copy h1 { font-size: 2.4rem; }
.device-frame.mobile .vertical-layout-stay .hero-copy h1 { font-size: 2.15rem; }
.device-frame.mobile .hero-layout-headerless .site-hero, .device-frame.mobile .hero-layout-editorial .site-hero { padding-top: 124px; }
.device-frame.mobile .catalog-items, .device-frame.mobile .portfolio-grid { grid-template-columns: 1fr 1fr; }
.device-frame.mobile .catalog-items { grid-template-columns: 1fr; }
.device-frame.mobile .catalog-heading { display: block; }
.device-frame.mobile .site-process ol { grid-template-columns: 1fr; }
.device-frame.mobile .site-tripinfo, .device-frame.mobile .site-distances { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
.device-frame.mobile .site-perks ol { grid-template-columns: 1fr; }
.device-frame.mobile .site-perks, .device-frame.mobile .site-areas, .device-frame.mobile .site-notice, .device-frame.mobile .site-trust { padding-left: 22px; padding-right: 22px; }
.device-frame.mobile .site-trust ul { flex-direction: column; }
.device-frame.mobile .vertical-layout-stay .catalog-items article.has-photo { grid-template-columns: 96px 1fr; }
.device-frame.mobile .vertical-layout-stay .catalog-image { width: 96px; }
.device-frame.mobile .vertical-catalog, .device-frame.mobile .site-story, .device-frame.mobile .site-gallery, .device-frame.mobile .site-portfolio, .device-frame.mobile .site-process, .device-frame.mobile .site-promise { padding-left: 22px; padding-right: 22px; }
.device-frame.mobile .vertical-layout-spa .vertical-catalog, .device-frame.mobile .vertical-layout-spa .site-story, .device-frame.mobile .vertical-layout-spa .site-gallery { padding-top: 56px; padding-bottom: 56px; }
.device-frame.mobile .site-gallery-grid { grid-template-columns: 1fr 1fr; }
.device-frame.mobile .site-promise ul { flex-direction: column; align-items: center; gap: 10px; }

/* Selling base for every business type: open-now, CTAs, find us and the phone action bar. */
.site-cta { text-decoration: none; }
.site-cta svg, .actionbar-item svg { width: 16px; height: 16px; fill: currentColor; flex: 0 0 auto; }
.site-cta { display: inline-flex; align-items: center; gap: 8px; }
.site-cta.secondary { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px currentColor; }
.open-badge { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin-bottom: 12px; padding: 5px 11px; border-radius: 99px; background: rgba(255,255,255,.92); color: #1d2b22; font-size: .7rem; font-weight: 700; }
.open-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2f9e5b; }
.open-badge.is-closed::before { background: #c2533b; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.catalog-cta { margin-top: 22px; }
.catalog-cta:empty { display: none; }

.site-visit { padding: 64px 38px; background: var(--site-ink); color: var(--site-surface); }
.visit-head { display: grid; gap: 10px; margin-bottom: 26px; }
.visit-head .site-section-kicker { margin: 0; }
.visit-head h3 { margin: 0; font-family: var(--site-heading); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 500; line-height: 1.05; }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.visit-address { display: grid; gap: 4px; font-style: normal; font-size: .9rem; }
.visit-address strong { font-size: 1.05rem; margin-bottom: 4px; }
.visit-address span { opacity: .8; }
.visit-address a { color: inherit; font-weight: 700; margin-top: 6px; }
.visit-hours { border-collapse: collapse; width: 100%; font-size: .84rem; }
.visit-hours caption { text-align: left; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .7; padding-bottom: 8px; }
.visit-hours th, .visit-hours td { padding: 7px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); text-align: left; font-weight: 400; }
.visit-hours td { text-align: right; font-variant-numeric: tabular-nums; }
.visit-hours tr.is-today th, .visit-hours tr.is-today td { font-weight: 800; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.visit-actions .site-cta { margin-top: 0; }

.site-actionbar { display: none; }
.device-frame.mobile .site-actionbar { position: sticky; bottom: 0; z-index: 30; display: grid; grid-template-columns: repeat(var(--actions), minmax(0, 1fr)); gap: 6px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--site-surface) 94%, transparent); backdrop-filter: blur(12px); box-shadow: 0 -8px 24px rgba(0,0,0,.12); }
.actionbar-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 52px; padding: 6px 4px; border: 0; border-radius: 12px; background: color-mix(in srgb, var(--site-ink) 7%, transparent); color: var(--site-ink); font: inherit; font-size: .7rem; font-weight: 700; text-decoration: none; }
.actionbar-item:first-child { background: var(--site-accent); color: #fff; }
.actionbar-item svg { width: 19px; height: 19px; }
.device-frame.mobile .site-visit { padding: 44px 22px; }
.device-frame.mobile .visit-grid { grid-template-columns: 1fr; }
.device-frame.mobile .visit-actions .site-cta { flex: 1 1 100%; justify-content: center; }
.device-frame.mobile .hero-signals { display: none; }

/* Content step: the weekly hours editor. */
.hours-editor { margin-top: 18px; display: grid; gap: 6px; }
.hours-editor-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #a9abb3; font-size: .76rem; font-weight: 500; margin-bottom: 4px; }
.hours-row { display: grid; grid-template-columns: 48px 130px 14px 130px auto; align-items: center; gap: 8px; }
.hours-row input[type="time"] { padding: 9px 12px; }
.hours-row.is-closed .hours-day { opacity: .5; }
.hours-day { font-size: .84rem; font-weight: 600; }
.hours-dash { color: var(--muted); text-align: center; }
.hours-closed { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .78rem; }
.hours-closed input { width: auto; accent-color: var(--acid); }
.hours-row .field-error { grid-column: 2 / -1; }

@media (max-width: 1280px) {
  .save-state { display: none; }
}

/* Narrow screens: numbers only, with the name of the current step. */
@media (max-width: 1024px) {
  .step-button:not(.active) .step-label { display: none; }
  .step-button:not(.active) { padding-right: 5px; }
}

@media (max-width: 980px) {
  .field-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .builder { grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) auto; }
  .builder-stage { order: -1; padding: 10px 12px 24px; }
  .builder-panel { max-height: 48vh; max-height: 48dvh; border-right: 0; border-top: 1px solid var(--line); box-shadow: 0 -12px 30px rgba(0,0,0,.35); }
  .builder-panel-body { padding: 16px 16px 12px; }
  .builder-panel-foot { padding: 10px 16px; }
  .workspace { padding: 28px 22px; }
  .editor-layout { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .pipeline::before { display: none; }
  .pipeline-node { display: grid; grid-template-columns: 58px 1fr; text-align: left; align-items: center; gap: 14px; }
  .node-box { width: 56px; height: 56px; margin: 0; }
  .evidence-grid { grid-template-columns: 1fr; }
  .catalog-items { grid-template-columns: 1fr; }
  .vertical-layout-tours .catalog-items article:nth-child(2), .vertical-layout-tattoo .catalog-items article:nth-child(2) { transform: none; }
}

@media (max-width: 720px) {
  .site-tripinfo, .site-distances { grid-template-columns: 1fr; }
  .site-perks ol { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .site-process ol { grid-template-columns: 1fr; }
  .hero-layout-headerless .site-hero, .hero-layout-editorial .site-hero { padding-top: 124px; }
  .visit-grid { grid-template-columns: 1fr; }
  .site-visit { padding: 44px 22px; }
  .hours-row { grid-template-columns: 40px minmax(0, 1fr) 10px minmax(0, 1fr); }
  .hours-closed { grid-column: 2 / -1; }
  :root { --topbar-h: 104px; }
  .brand { font-size: .95rem; }
  .topbar { grid-template-columns: 1fr auto; height: var(--topbar-h); padding: 8px 15px; row-gap: 6px; }
  .step-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .user-chip { display: none; }
  .workspace { padding: 25px 15px 50px; }
  .workspace-heading { display: block; }
  .preview-toolbar { align-items: flex-start; }
  .preview-toolbar-actions { align-items: flex-end; flex-direction: column; gap: 6px; }
  .preview-toolbar-actions .fine-print { display: none; }
  .workspace-heading p:not(.eyebrow) { margin-top: 15px; }
  .counter { display: inline-block; margin-top: 18px; }
  .field-grid, .field-grid.three, .language-panels { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 32px 24px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-links > span { display: none; }
  .site-hero { min-height: 500px; padding: 26px; }
  .service-strip { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .proof-panel { display: grid; }
  .section-label-row { display: block; }
  .section-label-row small { display: block; margin-top: 4px; }
  .catalog-heading { display: block; }
  .catalog-heading > span { display: block; margin-top: 10px; }
  .vertical-catalog { padding: 34px 24px 40px; }
  .hero-signals { display: none; }
  .catalog-editor-row, .catalog-editor.with-photos .catalog-editor-row { grid-template-columns: 1fr; }
  .catalog-editor-row label { grid-column: 2; }
  .site-story, .site-editorial { grid-template-columns: 1fr; }
  .site-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-package-grid, .site-quotes { grid-template-columns: 1fr; }
  .site-detail-list article { grid-template-columns: 30px 1fr; }
  .site-detail-list article > strong { grid-column: 2; }
}
.url-card a.ghost-button { text-decoration: none; }
