:root {
  --cream: #fff1dc;
  --cream-deep: #ffdba9;
  --paper: #fffaf2;
  --ink: #2d211b;
  --muted: #6c4e3e;
  --orange: #e85b24;
  --orange-dark: #9b3618;
  --honey: #ff9f36;
  --line: rgba(90, 49, 24, 0.18);
  --shadow: 0 24px 58px rgba(95, 48, 20, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 220, 148, 0.52), transparent 25rem),
    radial-gradient(circle at 95% 38%, rgba(224, 62, 25, 0.17), transparent 28rem),
    linear-gradient(145deg, #ffb248 0%, #ffa13f 46%, #ff8735 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(100% - 28px, 760px);
  margin: 0 auto;
  padding: 18px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 34px;
  min-height: 540px;
  padding: 54px 48px;
  border: 1px solid rgba(103, 48, 21, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 224, 158, 0.65), transparent 17rem),
    linear-gradient(112deg, #ffb34b 0%, #ffa242 50%, #ff8634 100%);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(72, 35, 19, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 229, 175, 0.13), 0 0 0 58px rgba(94, 43, 17, 0.035);
}

.hero-glow {
  position: absolute;
  inset: -120px auto auto -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 234, 183, 0.32);
  filter: blur(3px);
}

.hero-photo-wrap { position: relative; z-index: 1; }

.hero-photo-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 7px solid rgba(255, 250, 242, 0.94);
  border-radius: 140px 140px 34px 34px;
  background: #c7b5a6;
  box-shadow: 0 18px 38px rgba(81, 50, 30, 0.2), 0 0 0 1px rgba(89, 51, 25, 0.12);
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% center;
}

.film-mark {
  position: absolute;
  right: -16px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 9px);
  gap: 5px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--ink);
  transform: rotate(-7deg);
  box-shadow: 0 10px 20px rgba(51, 38, 31, 0.22);
}

.film-mark span { width: 9px; height: 9px; border-radius: 2px; background: var(--cream); }

.hero-copy { position: relative; z-index: 1; }

.eyebrow, .kicker {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.role {
  margin: 18px 0 0;
  color: #5b2c19;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.5;
}

.work-format {
  display: inline-grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 13px;
  width: min(100%, 350px);
  margin: 17px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(69, 35, 20, 0.16);
  border-radius: 17px;
  color: #40261a;
  background: rgba(255, 247, 230, 0.57);
  box-shadow: 0 8px 22px rgba(107, 48, 19, 0.08);
}

.format-item {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.format-item small {
  color: #76503c;
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.format-item strong {
  color: #322219;
  font-family: Georgia, serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
}

.format-divider {
  width: 1px;
  height: 34px;
  background: rgba(81, 42, 22, 0.18);
}

.lead {
  margin: 18px 0 0;
  color: #563d30;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button, .service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 17px;
  border-radius: 15px;
  font-size: 0.88rem;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover, .service-link:hover { transform: translateY(-2px); }

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, #3b2b23, #211914);
  box-shadow: 0 12px 24px rgba(67, 38, 24, 0.24);
}

.button-soft { border: 1px solid rgba(74, 39, 21, 0.2); background: rgba(255, 250, 240, 0.68); }

.section { padding: 72px 10px 0; }

.section-heading { margin-bottom: 24px; }

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.contact-stack { display: grid; gap: 12px; }

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 9px 26px rgba(92, 56, 33, 0.07);
}

.contact-card summary,
.single-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding: 14px 17px;
  cursor: pointer;
  list-style: none;
}

.contact-card summary::-webkit-details-marker { display: none; }
.contact-card summary::marker { content: ""; }

.brand-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(59, 43, 34, 0.12);
}

.contact-main { display: grid; flex: 1; gap: 3px; min-width: 0; }
.contact-main strong { font-size: 1rem; }
.contact-main small, .contact-options small { color: var(--muted); font-size: 0.78rem; line-height: 1.35; }
.single-contact > span:last-child { color: var(--orange-dark); font-size: 1.25rem; }

.chevron { color: var(--orange-dark); font-size: 1.25rem; transition: transform 160ms ease; }
details[open] .chevron { transform: rotate(180deg); }

.contact-options { padding: 0 13px 13px; }
.contact-options a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
}
.contact-options a span:first-child { display: grid; flex: 1; gap: 3px; }
.contact-options a > span:last-child { color: var(--orange-dark); font-size: 1.2rem; }

.service-list { display: grid; gap: 14px; }

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 14px 34px rgba(91, 55, 32, 0.08);
}

.service-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--orange-dark);
  background: linear-gradient(140deg, #f8d792, #f2b452);
  font-family: Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-card h3 { margin: 1px 0 5px; font-size: 1.55rem; font-weight: 550; }
.service-format { margin: 0 0 12px !important; color: var(--orange-dark) !important; font-size: 0.78rem !important; font-weight: 750; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }
.service-link { margin-top: 20px; color: #fffaf3; background: var(--ink); }

.important-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(185, 111, 34, 0.2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 228, 172, 0.78), rgba(255, 250, 242, 0.91));
}

.note-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.important-note strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.important-note p { margin: 5px 0 0; color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

.line-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--orange-dark);
  background: rgba(237, 180, 87, 0.22);
}

.line-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.address-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.96), rgba(248, 221, 174, 0.66)),
    var(--paper);
  box-shadow: 0 14px 34px rgba(91, 55, 32, 0.08);
}

.address-label { margin: 0 0 6px; color: var(--orange-dark); font-size: 0.78rem; font-weight: 750; }
.address-card address { font-style: normal; font-family: Georgia, serif; font-size: 1.16rem; line-height: 1.45; }
.route-button { min-width: 183px; }

.reviews-link {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 74px;
  margin-top: 12px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.9);
}

.reviews-link > span:nth-child(2) { display: grid; flex: 1; gap: 2px; }
.reviews-link small, .quick-link small { color: var(--muted); font-size: 0.76rem; font-weight: 500; }
.reviews-link > span:last-child { color: var(--orange-dark); font-size: 1.2rem; }

.compact-heading { margin-bottom: 20px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.quick-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 250, 242, 0.9);
}

.quick-link > span:last-child { display: grid; gap: 3px; min-width: 0; }
.quick-link strong { overflow-wrap: anywhere; font-size: 0.84rem; line-height: 1.35; }

.footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 76px 10px 24px;
  color: #4f3427;
  text-align: center;
}

.footer p { margin: 0; font-family: Georgia, serif; font-size: 1rem; }
.footer a { color: #38251c; font-size: 0.83rem; font-weight: 760; }
.footer-mark { display: flex; gap: 5px; padding: 7px 9px; border-radius: 7px; background: var(--ink); transform: rotate(-4deg); }
.footer-mark span { width: 7px; height: 7px; border-radius: 2px; background: var(--cream); }

@media (max-width: 680px) {
  .page-shell { width: min(100% - 18px, 540px); padding-top: 9px; }
  .hero { grid-template-columns: 1fr; gap: 30px; min-height: 0; padding: 30px 22px 33px; border-radius: 28px; }
  .hero-photo-wrap { width: min(78%, 290px); margin: 0 auto; }
  .hero-photo-frame { aspect-ratio: 1 / 1.05; border-radius: 130px 130px 30px 30px; }
  .hero-photo { object-position: 48% 37%; }
  .hero-copy { text-align: center; }
  .work-format { margin-inline: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .section { padding: 58px 5px 0; }
  .service-card { grid-template-columns: 1fr; gap: 14px; padding: 23px 20px; }
  .address-card { grid-template-columns: 44px 1fr; padding: 22px 19px; }
  .route-button { grid-column: 1 / -1; width: 100%; }
  .quick-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 62px; }
}

@media (max-width: 380px) {
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .contact-card summary, .single-contact { padding-inline: 13px; }
  .brand-icon { width: 42px; height: 42px; }
}

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