/* ============================================
   Deriland Leather & Fur — shared stylesheet
   ============================================ */

:root{
  --espresso: #1E140F;
  --espresso-soft: #2A1D15;
  --parchment: #F2E8D8;
  --parchment-dim: #E9DCC5;
  --tan: #9C5A34;
  --tan-deep: #7C4527;
  --oxblood: #6B2E1F;
  --brass: #B99568;
  --ink: #3A2A22;
  --ink-soft: #6B584C;
  --cream-line: rgba(185,149,104,0.35);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; max-width: 62ch; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation: none !important; transition: none !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--tan);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Stitched divider motif ---------- */
.stitch{
  border: none;
  height: 0;
  border-top: 2px dashed var(--cream-line);
  margin: 0;
}
.stitch.dark{ border-top-color: rgba(242,232,216,0.22); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--parchment);
  border-bottom: 2px dashed var(--cream-line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--brass);
}
.brand-name{
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
}
.brand-sub{
  display:block;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 1px;
  white-space: nowrap;
}
.brand-logo{
  height: 44px;
  width: auto;
  max-width: 42vw;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

nav.main-nav{
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a{
  font-size: 0.94rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
nav.main-nav a:hover{ border-bottom-color: var(--tan); }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 3px;
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-solid{
  background: var(--tan);
  color: var(--parchment);
}
.btn-solid:hover{ background: var(--tan-deep); }
.btn-outline{
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover{ background: var(--espresso); color: var(--parchment); }
.btn-outline-light{
  background: transparent;
  border-color: var(--brass);
  color: var(--parchment);
}
.btn-outline-light:hover{ background: var(--brass); color: var(--espresso); }

.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}
.hero .wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 560px;
}
.hero-copy .kicker{
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--tan-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--tan);
  display: inline-block;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero-copy p.lead{
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-rating{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.stars{ color: var(--tan-deep); letter-spacing: 2px; font-size: 0.95rem; }

.hero-visual{
  position: relative;
  height: 460px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(115deg, rgba(30,20,15,0.10) 0px, rgba(30,20,15,0.10) 2px, transparent 2px, transparent 26px),
    linear-gradient(160deg, #B67B44 0%, #8C5127 48%, #5C3016 100%);
  box-shadow: inset 0 0 0 1px rgba(185,149,104,0.4);
}
.hero-visual::after{
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(242,232,216,0.5);
  border-radius: 3px;
  pointer-events: none;
}
.hero-visual .visual-tag{
  position: absolute;
  left: 34px; bottom: 30px;
  right: 34px;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  max-width: 20ch;
}
.hero-visual .visual-note{
  position: absolute;
  top: 30px; left: 34px;
  color: rgba(242,232,216,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ---------- Info band (dark) ---------- */
.info-band{
  background: var(--espresso);
  color: var(--parchment);
}
.info-band .wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 42px;
  padding-bottom: 42px;
}
.info-item{
  padding: 0 26px;
  border-left: 2px dashed rgba(242,232,216,0.22);
}
.info-item:first-child{ border-left: none; padding-left: 0; }
.info-item .label{
  font-size: 0.78rem;
  color: var(--brass);
  margin-bottom: 8px;
}
.info-item .value{
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--parchment);
  margin-bottom: 4px;
}
.info-item .value-sub{
  font-size: 0.85rem;
  color: rgba(242,232,216,0.65);
}

/* ---------- Section shell ---------- */
.section{
  padding-top: 84px;
  padding-bottom: 84px;
}
.section.tight{ padding-top: 64px; padding-bottom: 64px; }
.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-head p{ color: var(--ink-soft); }

/* ---------- About / offerings ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.about-copy p{ color: var(--ink-soft); }
.about-copy .about-signature{
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed var(--cream-line);
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--espresso);
}

.trait-groups{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 34px;
}
.trait-group h3{
  font-size: 0.95rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--tan-deep);
  margin-bottom: 12px;
}
.trait-group ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trait-group li{
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.trait-group li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--tan);
}

/* ---------- Testimonials ---------- */
.section-dark{
  background: var(--espresso-soft);
  color: var(--parchment);
}
.section-dark .section-head p{ color: rgba(242,232,216,0.68); }
.section-dark .section-head h2{ color: var(--parchment); }

.reviews-row{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 0;
  border-top: 2px dashed rgba(242,232,216,0.22);
}
.review{
  padding: 34px 30px;
  border-left: 2px dashed rgba(242,232,216,0.22);
}
.review:first-child{ border-left: none; padding-left: 0; }
.review .stars{ color: var(--brass); margin-bottom: 14px; display:block; }
.review blockquote{
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--parchment);
}
.review .reviewer{
  font-size: 0.85rem;
  color: rgba(242,232,216,0.6);
}
.review .reviewer strong{ color: var(--brass); font-weight: 600; }

/* ---------- Visit / location ---------- */
.visit-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.visit-card{
  background: var(--parchment-dim);
  border: 1px solid var(--cream-line);
  border-radius: 4px;
  padding: 34px;
}
.visit-card dl{ margin: 0; }
.visit-card .row{
  display: flex;
  gap: 6px;
  padding: 16px 0;
  border-top: 2px dashed var(--cream-line);
}
.visit-card .row:first-of-type{ border-top: none; padding-top: 0; }
.visit-card dt{
  font-size: 0.78rem;
  color: var(--tan-deep);
  width: 108px;
  flex-shrink: 0;
  padding-top: 2px;
}
.visit-card dd{
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.visit-card .row-actions{
  display: flex;
  gap: 12px;
  padding-top: 22px;
  flex-wrap: wrap;
}

.map-panel{
  position: relative;
  min-height: 340px;
  border-radius: 4px;
  border: 1px solid var(--cream-line);
  background:
    linear-gradient(0deg, rgba(30,20,15,0.04) 1px, transparent 1px) 0 0/100% 34px,
    linear-gradient(90deg, rgba(30,20,15,0.04) 1px, transparent 1px) 0 0/34px 100%,
    var(--parchment-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
.map-panel .pin{
  width: 40px; height: 40px;
  border-radius: 50% 50% 50% 0;
  background: var(--oxblood);
  transform: rotate(-45deg);
  margin: 0 auto 22px;
}
.map-panel .map-copy{
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 30ch;
}
.map-panel .map-copy strong{ display:block; color: var(--espresso); font-family: var(--serif); font-size: 1.05rem; margin-bottom: 6px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--tan-deep);
  color: var(--parchment);
}
.cta-band .wrap{
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--parchment); font-size: 1.7rem; max-width: 20ch; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--espresso);
  color: rgba(242,232,216,0.75);
}
footer .footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}
footer .brand-name, footer .brand{ color: var(--parchment); }
footer .foot-col h4{
  font-size: 0.82rem;
  color: var(--brass);
  margin: 0 0 14px;
  font-weight: 600;
}
footer .foot-col ul{
  list-style: none; margin:0; padding:0;
  display: flex; flex-direction: column; gap: 10px;
}
footer .foot-col a{ font-size: 0.9rem; color: rgba(242,232,216,0.75); }
footer .foot-col a:hover{ color: var(--parchment); }
footer .foot-about p{ font-size: 0.9rem; color: rgba(242,232,216,0.6); max-width: 34ch; }
footer .footer-bottom{
  border-top: 2px dashed rgba(242,232,216,0.18);
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(242,232,216,0.5);
}

/* ---------- Legal pages ---------- */
.legal-hero{
  background: var(--espresso);
  color: var(--parchment);
  padding: 64px 0 46px;
}
.legal-hero h1{ color: var(--parchment); font-size: clamp(2rem, 4vw, 2.7rem); }
.legal-hero p{ color: rgba(242,232,216,0.65); margin-top: 12px; }
.legal-body{
  padding: 56px 0 90px;
}
.legal-body .wrap{
  max-width: 800px;
}
.legal-body h2{
  font-size: 1.3rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-body h2:first-child{ margin-top: 0; }
.legal-body p, .legal-body li{
  color: var(--ink-soft);
  max-width: 68ch;
}
.legal-body ul{ padding-left: 22px; }
.legal-body li{ margin-bottom: 8px; }
.legal-note{
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--parchment-dim);
  border-left: 3px solid var(--tan);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  nav.main-nav{ display: none; }
  .hero .wrap{ grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 42px; min-height: 0; }
  .hero-visual{ height: 320px; order: -1; }
  .info-band .wrap{ grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .info-item{ border-left: none; padding-left: 0; border-top: 2px dashed rgba(242,232,216,0.22); padding-top: 20px; }
  .info-item:nth-child(1), .info-item:nth-child(2){ border-top: none; padding-top: 0; }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .trait-groups{ grid-template-columns: 1fr 1fr; }
  .reviews-row{ grid-template-columns: 1fr; }
  .review{ border-left: none; border-top: 2px dashed rgba(242,232,216,0.22); padding-left: 0; }
  .review:first-child{ border-top: none; }
  .visit-grid{ grid-template-columns: 1fr; }
  footer .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .wrap{ padding: 0 20px; }
  .trait-groups{ grid-template-columns: 1fr; }
  footer .footer-top{ grid-template-columns: 1fr; }
  .cta-band .wrap{ flex-direction: column; align-items: flex-start; }
  .brand-logo{ height: 34px; }
  .brand-sub{ display: none; }
  .site-header .btn{ padding: 8px 14px; font-size: 0.85rem; }
}

@media (max-width: 420px){
  .brand-logo{ height: 30px; }
}
