/* 명성다원 홈페이지 초안 */
:root {
  --forest-950: #09271a;
  --forest-900: #103321;
  --forest-800: #17452d;
  --forest-700: #245b3a;
  --leaf-600: #547b36;
  --leaf-400: #8da55c;
  --cream-50: #fffdf7;
  --cream-100: #f8f3e7;
  --cream-200: #ece3cf;
  --ink: #183027;
  --muted: #657168;
  --line: rgba(25, 65, 43, .16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 49, 33, .13);
  --serif: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  --sans: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  line-height: 1.75;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  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 {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 10px 16px; color: #fff; background: var(--forest-900);
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 86px; color: #fff;
  transition: background .3s, box-shadow .3s, color .3s, height .3s;
}
.site-header.scrolled {
  height: 72px; color: var(--forest-950);
  background: rgba(255,253,247,.94);
  box-shadow: 0 8px 30px rgba(10,42,25,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  display: grid; place-items: center; width: 41px; height: 41px;
  border: 1px solid rgba(255,255,255,.38); border-radius: 50%;
}
.scrolled .brand-mark { border-color: var(--line); }
.brand-mark svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.brand strong { font-family: var(--serif); font-size: 20px; letter-spacing: -.03em; }
.brand small { margin-top: 5px; font-size: 8px; letter-spacing: .18em; opacity: .7; }
.site-menu { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-menu a { position: relative; font-size: 14px; font-weight: 500; }
.site-menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 1px; background: currentColor; transition: right .25s;
}
.site-menu a:hover::after, .site-menu a:focus-visible::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 20px; border: 1px solid rgba(255,255,255,.48);
  border-radius: 99px; font-size: 13px; font-weight: 600;
}
.scrolled .nav-cta { border-color: var(--forest-800); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 820px; height: min(900px, 100svh);
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background:
    url("/assets/images/tea-field.webp") center 49% / cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 14s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.02); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,25,14,.78) 0%, rgba(9,34,20,.5) 42%, rgba(7,26,14,.12) 72%),
    linear-gradient(0deg, rgba(4,19,11,.42), transparent 43%);
}
.hero-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 86px;
}
.eyebrow {
  margin: 0 0 20px; color: var(--leaf-600);
  font-size: 12px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase;
}
.eyebrow.light { color: #c9dda8; }
.hero h1 {
  max-width: 820px; margin: 0;
  font-family: var(--serif); font-size: clamp(48px, 6.3vw, 88px);
  font-weight: 500; line-height: 1.24; letter-spacing: -.06em;
}
.hero h1 em { color: #e4e6b8; font-style: normal; }
.hero-copy { margin: 30px 0 0; font-family: var(--serif); font-size: 18px; line-height: 1.9; opacity: .9; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 25px; border: 1px solid transparent;
  border-radius: 2px; font-size: 14px; font-weight: 600;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--forest-950); background: #e3e3b4; }
.button-primary:hover { background: #f4f0c8; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.05); }
.button-ghost:hover { background: #fff; color: var(--forest-950); }
.button-light { color: var(--forest-950); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.55); }
.button-outline-light:hover { color: var(--forest-950); background: #fff; }
.hero-facts {
  position: absolute; left: 20px; right: 20px; bottom: 45px;
  display: flex; gap: 0; width: fit-content;
}
.hero-facts > div {
  min-width: 175px; padding: 0 34px; border-left: 1px solid rgba(255,255,255,.28);
}
.hero-facts > div:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.hero-facts span { display: block; margin-top: 4px; font-size: 11px; letter-spacing: .05em; opacity: .72; }
.scroll-cue {
  position: absolute; z-index: 2; right: 34px; bottom: 40px;
  width: 26px; height: 50px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 9px; width: 4px; height: 4px;
  margin-left: -2px; border-radius: 50%; background: #fff;
  animation: scrollCue 2s infinite;
}
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }

/* Common sections */
.section { padding: 130px 0; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.section-copy h2, .section-heading h2, .craft-copy h2, .contact-inner h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 500; line-height: 1.35; letter-spacing: -.055em;
}
.section-copy .lead { margin: 34px 0 18px; font-family: var(--serif); font-size: 20px; line-height: 1.8; }
.section-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.signature { display: flex; align-items: center; gap: 17px; margin-top: 34px; color: var(--forest-700); font-family: var(--serif); }
.signature-line { width: 48px; height: 1px; background: var(--leaf-400); }
.portrait-card { position: relative; margin: 0; }
.portrait-card::before {
  content: ""; position: absolute; z-index: -1; width: 63%; height: 72%;
  left: -28px; bottom: -28px; background: var(--cream-200);
}
.portrait-card img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.portrait-card figcaption {
  position: absolute; left: -44px; bottom: 42px; width: min(310px, 70%);
  padding: 24px 26px; background: rgba(255,253,247,.94); box-shadow: var(--shadow);
}
.portrait-card strong { display: block; font-family: var(--serif); font-size: 18px; }
.portrait-card span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

.place-strip {
  position: relative; min-height: 300px; display: grid; align-items: center;
  color: #fff; background:
    linear-gradient(rgba(8,36,20,.55), rgba(8,36,20,.55)),
    url("/assets/images/tea-field.webp") center 54% / cover fixed;
}
.place-strip p { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3.5vw, 44px); }
.place-strip span { display: block; margin-top: 14px; font-size: 11px; letter-spacing: .3em; opacity: .75; }

/* Tea */
.tea-section { background: var(--cream-100); }
.section-heading { max-width: 740px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); }
.tea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tea-card {
  overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.65);
  transition: transform .3s, box-shadow .3s;
}
.tea-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tea-card-image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.tea-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.tea-card:hover img { transform: scale(1.045); }
.tea-card--fermented .tea-card-image img { object-position: 52% 35%; }
.tea-badge {
  position: absolute; left: 20px; bottom: 18px; padding: 8px 12px;
  color: #fff; background: rgba(15,49,30,.83); font-size: 11px; letter-spacing: .05em;
  backdrop-filter: blur(8px);
}
.tea-card-body { padding: 30px 28px 32px; }
.tea-label { margin: 0 0 5px; color: var(--leaf-600); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.tea-card h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 600; }
.tea-card-body > p:not(.tea-label) { min-height: 58px; margin: 13px 0; color: var(--muted); font-size: 14px; }
.tea-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; padding: 0; list-style: none; }
.tea-card li { padding: 5px 10px; border: 1px solid var(--line); border-radius: 99px; font-size: 11px; }
.text-link {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 28px;
  padding: 0; border: 0; color: var(--forest-800); background: transparent;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.collection-banner {
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  margin-top: 30px; padding: 45px 50px; color: #fff;
  background:
    linear-gradient(90deg, rgba(9,43,25,.95), rgba(20,70,41,.74)),
    url("/assets/images/tea-field.webp") center 60% / cover;
}
.collection-banner h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.collection-banner p:not(.eyebrow) { margin: 10px 0 0; font-size: 14px; opacity: .76; }

/* Craft */
.craft-section { overflow: hidden; }
.craft-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.craft-gallery { position: relative; min-height: 710px; }
.craft-main { position: absolute; inset: 0 90px 80px 0; margin: 0; }
.craft-main img { width: 100%; height: 100%; object-fit: cover; }
.craft-small {
  position: absolute; margin: 0; border: 10px solid var(--cream-50); box-shadow: var(--shadow);
}
.craft-small--one { right: 0; top: 35px; width: 230px; }
.craft-small--two { right: 18px; bottom: 0; width: 270px; }
.craft-small img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.craft-copy > p:not(.eyebrow) { margin: 26px 0 0; color: var(--muted); }
.process-list { margin: 42px 0 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { padding-top: 2px; color: var(--leaf-600); font-family: var(--serif); font-size: 14px; }
.process-list strong { font-family: var(--serif); font-size: 18px; }
.process-list p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.quote-section {
  position: relative; padding: 110px 0; color: #fff;
  background:
    linear-gradient(rgba(6,31,17,.74), rgba(6,31,17,.74)),
    url("/assets/images/tea-field.webp") center 45% / cover fixed;
}
.quote-section blockquote { margin: 0; text-align: center; }
.quote-section svg { width: 38px; fill: #cddcab; opacity: .85; }
.quote-section p { margin: 24px 0; font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); line-height: 1.55; }
.quote-section cite { font-size: 11px; font-style: normal; letter-spacing: .24em; opacity: .68; }

/* Guides */
.guide-section { background: var(--cream-100); }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.guide-card {
  display: grid; grid-template-columns: 52px 1fr 36px; align-items: center; gap: 20px;
  width: 100%; padding: 26px 28px; border: 1px solid var(--line); color: var(--ink);
  background: rgba(255,255,255,.7); text-align: left; cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.guide-card:hover { transform: translateY(-3px); border-color: rgba(28,78,47,.35); background: #fff; }
.guide-number { color: var(--leaf-600); font-family: var(--serif); font-size: 13px; }
.guide-card strong { display: block; font-family: var(--serif); font-size: 19px; }
.guide-card div span { color: var(--muted); font-size: 12px; }
.guide-arrow { justify-self: end; color: var(--forest-700); font-size: 22px; }

/* Visual */
.visual-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(2, 310px); gap: 18px; }
.visual-item { position: relative; margin: 0; overflow: hidden; }
.visual-item--wide { grid-row: 1 / 3; }
.visual-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.visual-item:hover img { transform: scale(1.04); }
.visual-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,24,12,.75)); }
.visual-item figcaption { position: absolute; z-index: 1; left: 28px; bottom: 25px; color: #fff; }
.visual-item figcaption span { display: block; margin-bottom: 4px; font-size: 10px; letter-spacing: .2em; opacity: .72; }
.visual-item figcaption strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }


/* Location map */
.location-section { background: var(--cream-100); }
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.map-frame {
  min-height: 520px;
  background: var(--cream-200);
}
.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
}
.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 44px;
  background: var(--forest-900);
  color: #fff;
}
.location-label {
  margin: 0 0 12px;
  color: #c9dda8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.location-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}
.location-address {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}
.location-copy {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.location-actions {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}
.location-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: transparent;
}
.location-secondary:hover {
  color: var(--forest-950);
  background: #fff;
}

/* Contact */
.contact-section { position: relative; padding: 130px 0 0; color: #fff; background: var(--forest-950); overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0; opacity: .28;
  background:
    linear-gradient(90deg, var(--forest-950) 24%, transparent),
    url("/assets/images/master-pouring.webp") 85% 42% / 58% auto no-repeat;
}
.contact-inner { position: relative; z-index: 1; padding-bottom: 115px; }
.contact-inner > p:not(.eyebrow) { margin: 22px 0 0; opacity: .7; }
.contact-actions { display: flex; gap: 12px; margin-top: 38px; }
.contact-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 75px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18);
}
.contact-meta span { display: block; font-size: 9px; letter-spacing: .22em; opacity: .45; }
.contact-meta strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 14px; font-weight: 400; }

/* Footer */
.site-footer { padding: 68px 0 20px; color: #ced5ce; background: #071b11; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .5fr 1.4fr; gap: 65px; }
.brand--footer { color: #fff; }
.brand--footer .brand-mark { border-color: rgba(255,255,255,.2); }
.footer-grid > div:first-child > p { max-width: 320px; margin: 18px 0 0; font-family: var(--serif); font-size: 13px; opacity: .62; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-info { font-size: 11px; line-height: 1.9; opacity: .58; }
.footer-info p { margin: 0; }
.draft-note { color: #c9dda8; }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 55px; padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; letter-spacing: .07em; opacity: .48;
}

/* Guide modal */
.guide-modal {
  width: min(780px, calc(100% - 28px)); max-height: 92vh; padding: 0;
  border: 0; border-radius: 4px; background: var(--cream-50); box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.guide-modal::backdrop { background: rgba(5,22,12,.78); backdrop-filter: blur(5px); }
.modal-toolbar {
  position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  min-height: 60px; padding: 0 14px 0 24px; color: #fff; background: var(--forest-900);
}
.modal-toolbar strong { font-family: var(--serif); font-weight: 500; }
.modal-close {
  display: grid; place-items: center; width: 42px; height: 42px; border: 0;
  color: #fff; background: transparent; font-size: 28px; cursor: pointer;
}
.modal-body { background: #eee8db; }
.modal-body img { width: 100%; height: auto; }

/* Utilities */
.to-top {
  position: fixed; z-index: 800; right: 22px; bottom: 22px; display: grid; place-items: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  color: #fff; background: var(--forest-800); box-shadow: 0 10px 26px rgba(0,0,0,.15);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; cursor: pointer;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .site-header { height: 72px; }
  .site-menu {
    position: fixed; inset: 72px 0 auto; display: grid; gap: 0; margin: 0; padding: 12px 18px 22px;
    color: var(--forest-950); background: rgba(255,253,247,.98);
    border-top: 1px solid var(--line); box-shadow: 0 18px 38px rgba(0,0,0,.1);
    transform: translateY(-130%); opacity: 0; transition: .25s;
  }
  .site-menu.open { transform: translateY(0); opacity: 1; }
  .site-menu a { padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .site-menu a::after { display: none; }
  .menu-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; margin-left: auto; padding: 10px; border: 0; color: inherit; background: transparent;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: currentColor; transition: .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-cta { display: none; }
  .hero { min-height: 760px; }
  .two-column, .craft-layout { grid-template-columns: 1fr; gap: 70px; }
  .portrait-card { width: min(600px, 100%); margin-inline: auto; }
  .tea-grid { grid-template-columns: 1fr; }
  .tea-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .tea-card-image { height: 100%; aspect-ratio: auto; }
  .tea-card-body > p:not(.tea-label) { min-height: auto; }
  .craft-gallery { min-height: 650px; }
  .craft-copy { max-width: 650px; }

  .location-layout { grid-template-columns: 1fr; }
  .location-card { padding: 42px 36px; }

  .contact-bg { background-size: 85% auto; background-position: 130% 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 30px); }
  .section { padding: 90px 0; }
  .brand strong { font-size: 18px; }
  .brand-mark { width: 37px; height: 37px; }
  .hero { height: 760px; min-height: 720px; }
  .hero-bg { background-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,25,14,.82), rgba(7,27,15,.35)); }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); line-height: 1.32; }
  .hero-copy { font-size: 15px; }
  .desktop-only { display: none; }
  .hero-actions { flex-direction: column; width: min(310px, 100%); }
  .hero-facts { bottom: 34px; width: calc(100% - 30px); }
  .hero-facts > div { min-width: 0; flex: 1; padding: 0 12px; }
  .hero-facts strong { font-size: 13px; }
  .hero-facts span { font-size: 9px; }
  .scroll-cue { display: none; }
  .section-copy h2, .section-heading h2, .craft-copy h2, .contact-inner h2 { font-size: 38px; }
  .section-copy .lead { font-size: 17px; }
  .portrait-card figcaption { left: 16px; bottom: 16px; width: calc(100% - 32px); }
  .portrait-card::before { left: -12px; bottom: -12px; }
  .place-strip { min-height: 230px; background-attachment: scroll; }
  .tea-card { display: block; }
  .tea-card-image { aspect-ratio: 4 / 3; }
  .collection-banner { align-items: flex-start; flex-direction: column; padding: 34px 26px; }
  .craft-gallery { min-height: 500px; }
  .craft-main { inset: 0 58px 62px 0; }
  .craft-small { border-width: 6px; }
  .craft-small--one { width: 150px; }
  .craft-small--two { right: 0; width: 180px; }
  .quote-section { padding: 80px 0; background-attachment: scroll; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { grid-template-columns: 36px 1fr 24px; padding: 22px 18px; gap: 12px; }
  .visual-grid { display: block; }
  .visual-item { height: 350px; margin-top: 12px; }
  .visual-item:first-child { margin-top: 0; }

  .map-frame, .map-frame iframe { min-height: 400px; height: 400px; }
  .location-card { padding: 34px 24px; }
  .location-card h3 { font-size: 29px; }

  .contact-section { padding-top: 90px; }
  .contact-bg { opacity: .16; background-size: cover; background-position: center; }
  .contact-actions { flex-direction: column; width: min(320px, 100%); }
  .contact-meta { grid-template-columns: 1fr; gap: 20px; margin-top: 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-info { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

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