/* ============================================================
   まるみ工房 — corporate site
   warm beige + white wood + rounded gothic, mobile-first
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root{
  /* palette */
  --bg:        #f7f1e6;   /* warm cream */
  --bg-soft:   #fbf6ec;   /* lighter cream */
  --surface:   #ffffff;
  --surface-2: #fffdf7;
  --beige:     #e8d8bd;
  --beige-2:   #d9c39c;
  --wood:      #c8a87c;
  --wood-deep: #a8845a;
  --line:      #ece1cc;
  --line-2:    #e2d3b6;
  --ink:       #3b322a;   /* warm dark brown — never pure black */
  --ink-2:     #5a4f43;
  --muted:     #8a7c6a;
  --accent:    #c46a3a;   /* warm terracotta, used sparingly */

  /* type */
  --ff-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --ff-body:    "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --ff-serif:   "Fraunces", "Hiragino Mincho ProN", serif;

  /* layout */
  --container: 1140px;
  --pad-x: clamp(20px, 5vw, 56px);
  --sect-y: clamp(72px, 12vw, 140px);

  /* radius / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-soft: 0 1px 0 rgba(122,90,50,.04), 0 24px 48px -32px rgba(122,90,50,.18);
  --shadow-card: 0 1px 0 rgba(122,90,50,.04), 0 8px 24px -16px rgba(122,90,50,.18);
}

html, body { margin:0; padding:0; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: normal;
  overflow-wrap: anywhere;
}

img, svg { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--beige); color: var(--ink); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* hide-on-mobile br helper */
.br-md { display: none; }
@media (min-width: 720px){ .br-md { display: inline; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-scrolled{
  border-bottom-color: var(--line);
  background: rgba(251, 246, 236, .92);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
}
.brand-mark{
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.brand-text { display: grid; line-height: 1.2; }
.brand-name{
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .03em;
  color: var(--ink);
}
.brand-sub{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
}

.nav-desktop{
  display: none;
}
@media (min-width: 960px){
  .nav-desktop{
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 500;
  }
  .nav-desktop a{
    color: var(--ink-2);
    position: relative;
    padding: 6px 2px;
    transition: color .2s ease;
  }
  .nav-desktop a:hover{ color: var(--ink); }
  .nav-desktop a::after{
    content:"";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--wood);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
  }
  .nav-desktop a:hover::after{ transform: scaleX(1); }
  .nav-desktop a.nav-cta{
    background: var(--ink);
    color: var(--bg-soft);
    padding: 10px 20px;
    border-radius: 999px;
    transition: background .2s ease;
  }
  .nav-desktop a.nav-cta:hover{ background: var(--wood-deep); }
  .nav-desktop a.nav-cta::after{ display: none; }
}

.hamburger{
  width: 44px; height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.hamburger span{
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 3px 0;
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }
@media (min-width: 960px){ .hamburger{ display: none; } }

.mobile-menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, border-bottom-color .35s ease;
  background: var(--bg-soft);
  border-bottom: 1px solid transparent;
}
.mobile-menu.is-open{
  max-height: 560px;
  border-bottom-color: var(--line);
}
.mobile-menu a{
  display: block;
  padding: 18px var(--pad-x);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  border-top: 1px solid var(--line);
}
.mobile-menu a:first-child{ border-top: 1px solid var(--line); }
.mobile-menu a.nav-cta{
  margin: 14px var(--pad-x);
  padding: 14px 20px;
  background: var(--ink);
  color: var(--bg-soft);
  border-radius: 999px;
  border-top: none;
  text-align: center;
}
.mobile-menu-note{
  margin: 0;
  padding: 8px var(--pad-x) 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: .08em;
}

/* ============================================================
   GENERIC
   ============================================================ */
.section{ padding-top: var(--sect-y); padding-bottom: var(--sect-y); }
.section-head{ margin-bottom: clamp(40px, 7vw, 72px); }

.section-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--wood-deep);
  letter-spacing: .06em;
}
.section-kicker .num{
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--wood-deep);
  background: var(--surface-2);
}
.section-kicker.on-light .num{ background: rgba(255,255,255,.5); }

.section-title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 6.4vw, 3.2rem);
  line-height: 1.32;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.section-sub{
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.95;
  max-width: 56ch;
}

/* buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .04em;
  line-height: 1;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--ink);
  color: var(--bg-soft);
}
.btn-primary:hover{ background: var(--wood-deep); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover{ background: var(--surface); border-color: var(--wood); }
.btn-block{ width: 100%; }

/* placeholder photos */
.photo{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 30% 20%, #f6e8cd 0%, transparent 60%),
    radial-gradient(120% 80% at 80% 90%, #e6d2ad 0%, transparent 65%),
    linear-gradient(135deg, #ecd9b6 0%, #d9bf91 100%);
  color: var(--wood-deep);
  isolation: isolate;
}
.photo::before{
  /* subtle "wood grain" lines */
  content:"";
  position: absolute; inset:0;
  background-image: repeating-linear-gradient(
    100deg,
    rgba(122,90,50,.045) 0px,
    rgba(122,90,50,.045) 1px,
    transparent 1px,
    transparent 9px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-grain{
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(122,90,50,.10) 1px, transparent 1.4px);
  background-size: 4px 4px;
  opacity: .18;
}
.photo-icon{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -56%);
  opacity: .55;
}
.photo-label{
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(95,68,38,.7);
  background: rgba(255,253,247,.6);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding-top: clamp(40px, 8vw, 72px);
  padding-bottom: clamp(64px, 10vw, 120px);
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(232,216,189,.6) 0%, transparent 60%),
    radial-gradient(50% 40% at 5% 80%, rgba(232,216,189,.5) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 64px);
  align-items: center;
}
@media (min-width: 960px){
  .hero-inner{
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
  }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-2);
}
.eyebrow .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-title{
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 9vw, 5.2rem);
  line-height: 1.18;
  letter-spacing: .005em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title .line{ display: block; }
.hero-title .accent{
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after{
  content:"";
  position: absolute;
  left: -2px; right: -2px;
  bottom: .12em;
  height: .22em;
  background: linear-gradient(180deg, transparent 0%, #f0d9a8 0%, #e8c98a 100%);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead{
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 2;
  max-width: 32em;
}

.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--ink-2);
}
.hero-meta li{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-meta span{
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--wood-deep);
  min-width: 24px;
  letter-spacing: .04em;
}
@media (min-width: 520px){
  .hero-meta{ grid-template-columns: repeat(3, auto); justify-content: start; gap: 24px; }
}

/* hero visual */
.hero-visual{
  position: relative;
  aspect-ratio: 4/5;
  min-height: 320px;
}
@media (min-width: 960px){
  .hero-visual{ aspect-ratio: auto; height: 560px; }
}
.photo-hero{
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
}
.photo-side{
  position: absolute;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  background:
    linear-gradient(135deg, #f1e2c2 0%, #ddc295 100%);
  overflow: hidden;
}
.photo-side::before{
  content:"";
  position: absolute; inset:0;
  background-image: repeating-linear-gradient(95deg, rgba(122,90,50,.05) 0, rgba(122,90,50,.05) 1px, transparent 1px, transparent 8px);
  mix-blend-mode: multiply;
}
.photo-side-a{
  width: 38%; aspect-ratio: 1/1;
  right: -6%;
  top: -6%;
}
.photo-side-b{
  width: 44%; aspect-ratio: 5/4;
  left: -5%;
  bottom: -7%;
}
.hero-stamp{
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 110px;
  height: 110px;
  background: var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  animation: spin 24s linear infinite;
}
.hero-stamp svg { width: 96px; height: 96px; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-bottom-rule{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}


/* ============================================================
   ABOUT
   ============================================================ */
.section-about{
  background: var(--bg);
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
@media (min-width: 880px){
  .about-grid{ grid-template-columns: 1.15fr .85fr; gap: 80px; }
}
.about-body p{
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2;
}
.about-body .lead-p{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--ink);
  line-height: 1.95;
  margin-bottom: 24px;
}
.about-defs{
  margin: 28px 0 0;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  gap: 14px;
}
.about-defs > div{
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 16px;
}
.about-defs dt{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--wood-deep);
  letter-spacing: .12em;
}
.about-defs dd{
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

.about-card{
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.about-card-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.about-card .tag{
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--wood-deep);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.about-card .kana{
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  text-align: right;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: .14em;
}
.photo-about{
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
}
.about-card-quote{
  margin: 18px 4px 4px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  letter-spacing: .02em;
}


/* ============================================================
   SERVICES
   ============================================================ */
.section-services{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px){ .services-grid{ grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 960px){ .services-grid{ grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.service-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-2);
}
.service-num{
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--wood);
  letter-spacing: .08em;
}
.service-icon{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--wood-deep);
  margin-bottom: 18px;
}
.service-card h3{
  margin: 0 0 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--ink);
}
.service-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.services-note{
  margin: clamp(32px, 5vw, 48px) 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}


/* ============================================================
   STRENGTHS
   ============================================================ */
.section-strengths{ background: var(--bg); }
.strengths-list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.strength-row{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 720px){
  .strength-row{ grid-template-columns: 120px 1fr; gap: 32px; }
}
.strength-num{
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--wood-deep);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1;
  padding-top: 4px;
}
.strength-row h3{
  margin: 0 0 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--ink);
  letter-spacing: .02em;
}
.strength-row p{
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2;
  max-width: 52ch;
}


/* ============================================================
   WORKS
   ============================================================ */
.section-works{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.works-grid{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px){ .works-grid{ grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 960px){ .works-grid{ grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.work-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card); }
.photo-work{
  aspect-ratio: 4/3;
  border-radius: 0;
}
.photo-work + .work-body{ padding: 22px 22px 26px; }
.work-tag{
  margin: 0 0 6px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--wood-deep);
  letter-spacing: .08em;
}
.work-card h3{
  margin: 0 0 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1.55;
}
.work-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* vary work placeholders a touch */
.work-card:nth-child(1) .photo-work{
  background: linear-gradient(135deg, #f0dfbf 0%, #d9bf91 100%);
}
.work-card:nth-child(2) .photo-work{
  background: linear-gradient(140deg, #efdfc1 0%, #e2c89a 60%, #cfb482 100%);
}
.work-card:nth-child(3) .photo-work{
  background: linear-gradient(150deg, #f4e7cc 0%, #e3cea0 100%);
}


/* ============================================================
   CONTACT
   ============================================================ */
.section-contact{
  background: var(--bg);
  padding-bottom: calc(var(--sect-y) + 20px);
}
.contact-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.contact-card::before{
  content:"";
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(232,216,189,.55), transparent);
  pointer-events: none;
}
@media (min-width: 880px){
  .contact-card{ grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
}
.contact-lead{
  margin: 20px 0 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.95;
}
.contact-badges{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-badges li{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 13px;
  padding: 7px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  letter-spacing: .04em;
}

.contact-right{ position: relative; }

.contact-phone{
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.contact-phone:hover{ border-color: var(--wood); background: #fff; }
.contact-phone-label{
  display: block;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--wood-deep);
  margin-bottom: 6px;
}
.contact-phone-num{
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: .04em;
  color: var(--ink);
  line-height: 1.2;
}
.contact-phone-hours{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.contact-foot{
  margin: 12px 4px 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: #ede1c8;
  color: var(--ink);
  padding: clamp(56px, 8vw, 88px) 0 32px;
  position: relative;
}
.site-footer::before{
  content:"";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,90,50,.25), transparent);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px){
  .footer-inner{
    grid-template-columns: 1.2fr 1.4fr 1fr;
    grid-template-areas:
      "brand info nav"
      "copy  copy copy";
    gap: 56px;
  }
  .footer-brand{ grid-area: brand; }
  .footer-info{ grid-area: info; }
  .footer-nav{ grid-area: nav; }
  .footer-copy{ grid-area: copy; }
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-mark{ background: var(--surface); }
.footer-name{
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.footer-tag{
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.footer-info{
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-info > div{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  font-size: 13px;
  line-height: 1.85;
  align-items: baseline;
}
.footer-info dt{
  color: var(--wood-deep);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .12em;
}
.footer-info dd{
  margin: 0;
  color: var(--ink-2);
}
.footer-info a:hover{ color: var(--ink); text-decoration: underline; }
.footer-nav{
  display: grid;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 14px;
}
.footer-nav a{
  color: var(--ink-2);
  transition: color .2s ease;
}
.footer-nav a:hover{ color: var(--ink); }
.footer-copy{
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(122,90,50,.18);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .06em;
}


/* ============================================================
   ANIMATIONS — entry on scroll
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero-stamp{ animation: none; }
}
