@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/newsreader-normal-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/newsreader-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-italic-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-normal-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-paper: #f7f1e8;
  --color-paper-soft: #fbf7f2;
  --color-sand: #efe5d9;
  --color-ink: #3d2c24;
  --color-muted: #675348;
  --color-line: #e0d1c2;
  --color-clay: #9c5732;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-paper);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-paper);
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:focus-visible {
  outline: 2px solid var(--color-clay);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 80;
  background: var(--color-ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
}

.skip:focus {
  transform: none;
}

picture {
  display: block;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.serif {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 500;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-line);
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding: 10px 0;
}

.label {
  color: #806a5a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-link {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-link .label {
  letter-spacing: 0.1em;
}

.brand {
  color: var(--color-ink);
  font-size: clamp(17px, 4.6vw, 26px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.top-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.top-book {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: #5a463a;
  font-size: 15px;
}

.nav a:hover {
  color: var(--color-clay);
}

.menu-box {
  display: block;
}

.menu-box summary {
  list-style: none;
}

.menu-box summary::-webkit-details-marker {
  display: none;
}

.static-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #d8c7b7;
  background: #fbf7f2;
  color: #5a463a;
  padding: 0;
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -5px;
}

.menu-bars::after {
  top: 5px;
}

.menu-box[open] .menu-bars {
  background: transparent;
}

.menu-box[open] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-box[open] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-line);
  background: var(--color-paper-soft);
  padding: 4px 20px 20px;
}

.menu-box[open] .mobile-nav {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav a {
  display: block;
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0;
  min-height: 44px;
}

.mobile-nav .button {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  background: var(--color-clay);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease;
}

.button:hover {
  background: #804528;
  color: #fff;
}

/* Breadcrumbs */

.crumbs {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-paper-soft);
  padding: 12px 0;
  font-size: 13px;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7a6659;
}

.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #b7a496;
}

.crumbs a:hover {
  color: var(--color-clay);
}

.crumbs [aria-current="page"] {
  color: #4f3d33;
  font-weight: 600;
}

/* Sections */

main > section {
  padding: 72px 0;
}

main > section.hero {
  padding: 0;
}

.band {
  background: var(--color-paper-soft);
}

.sand {
  background: var(--color-sand);
}

.section-rel {
  position: relative;
  overflow: hidden;
}

.section-rel > .wrap {
  position: relative;
}

.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ambient img,
.ambient picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambient img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(251, 247, 242, 0.9), transparent 34%),
    linear-gradient(90deg, rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.56) 48%, rgba(247, 241, 232, 0.86));
}

h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 500;
}

h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.2;
}

.lead {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 24px;
}

.two,
.three {
  grid-template-columns: 1fr;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.subtle {
  border-bottom: 1px solid #8b725f;
  color: #513d31;
  padding-bottom: 2px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.subtle:hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #806a5a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-head {
  max-width: 820px;
  margin: 0 auto 28px;
}

.block-title {
  margin-bottom: 28px;
}

.tight-lead {
  margin: 8px 0 4px;
}

.group-title {
  margin-top: 44px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-paper);
}

.hero-img {
  position: relative;
  width: 100%;
  height: min(88vw, 420px);
  display: block;
}

.hero-img picture {
  height: 100%;
}

.hero-img img,
.hero-img picture {
  width: 100%;
  height: 100%;
}

.hero-img img {
  object-fit: cover;
  object-position: 52% 10%;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0) 52%, var(--color-paper) 100%);
}

.hero-grid {
  display: grid;
  align-items: start;
  gap: 20px;
  min-height: 0;
  padding: 8px 0 36px;
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--color-ink);
  font-size: clamp(28px, 8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.7;
}

.hero .actions {
  justify-content: center;
}

.page-head h1 {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: clamp(28px, 7.4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.page-head .lead {
  margin-top: 18px;
}

/* Cards */

.cards {
  display: grid;
  gap: 18px;
}

.card {
  min-width: 0;
  border: 1px solid var(--color-line);
  background: rgba(251, 247, 242, 0.9);
  padding: 22px 22px 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

a.card:hover {
  border-color: #c49a78;
  background: #fffaf4;
}

.card h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.card li + li {
  margin-top: 6px;
}

.card .subtle {
  display: inline-block;
  margin-top: 16px;
}

.card-stat {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.1;
}

.signal-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--color-line);
  background: rgba(251, 247, 242, 0.88);
  padding: 24px;
}

.signal-item {
  border-top: 1px solid #e6d9cc;
  padding: 14px 0 4px;
}

.signal-item:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.signal-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.signal-item p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #ede1d4;
  padding: 6px;
}

.visual-card img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.visual-card.portrait-card {
  align-self: start;
  max-width: 420px;
  margin-inline: auto;
}

.visual-card.portrait-card img {
  min-height: 0;
  aspect-ratio: 894 / 1280;
}

.visual-card.headshot-card {
  align-self: start;
  max-width: 420px;
  margin-inline: auto;
}

.visual-card.headshot-card img {
  min-height: 0;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
}

.grid.two > div > ul {
  margin: 0 0 24px;
  padding-left: 1.15em;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.grid.two > div > ul li + li {
  margin-top: 8px;
}

/* Gallery */

.office-gallery {
  overflow: hidden;
  background: #f8f0e6;
}

.gallery-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 340px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 8px;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid #e2d4c6;
  border-radius: 22px;
  background: #eadfd2;
  scroll-snap-align: start;
}

.gallery-core {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #f4eadf;
}

.gallery-core picture,
.gallery-core img {
  width: 100%;
  height: 100%;
}

.gallery-core img {
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(44, 30, 23, 0), rgba(44, 30, 23, 0.58));
  padding: 48px 16px 18px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 8px rgba(40, 24, 16, 0.35);
}

/* Article body */

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article p {
  margin: 16px 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.article h2 {
  margin: 40px 0 10px;
  color: var(--color-ink);
  font-size: clamp(26px, 3.4vw, 32px);
  line-height: 1.2;
}

.article h3 {
  margin: 28px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.article > section:first-child > h2:first-child,
.article > h2:first-child {
  margin-top: 0;
}

.article a {
  color: var(--color-clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article a:hover {
  color: #804528;
}

.article ul,
.article ol {
  margin: 16px 0;
  padding-left: 1.3em;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
}

.article li + li {
  margin-top: 8px;
}

.article strong {
  color: var(--color-ink);
}

.article-break {
  max-width: 760px;
  margin: 40px auto;
  border: 1px solid var(--color-line);
  background: rgba(241, 230, 217, 0.7);
  padding: 24px 28px;
}

.article-break h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.article-break p {
  margin: 10px 0 0;
  font-size: 17px;
}

.notice {
  max-width: 760px;
  margin: 36px auto 0;
  border-left: 2px solid var(--color-clay);
  background: rgba(251, 247, 242, 0.9);
  padding: 16px 20px;
  color: #5b483c;
  font-size: 15px;
  line-height: 1.7;
}

.rich-text > * {
  margin-top: 1.1em;
}

.rich-text > *:first-child {
  margin-top: 0;
}

.rich-text p {
  margin: 0;
}

.rich-text a {
  color: var(--color-clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-text ul,
.rich-text ol {
  margin: 0;
  padding-left: 1.4em;
}

.rich-text li {
  margin-top: 0.4em;
}

.rich-text strong {
  color: var(--color-ink);
}

/* Link rows */

.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #d9cbbb;
  padding: 14px 0;
  color: #4f3d33;
  font-size: 16px;
  transition: color 0.2s ease;
}

.row:hover {
  color: var(--color-clay);
}

.row span:first-child {
  font-weight: 600;
}

.row-note {
  display: block;
  margin-top: 4px;
  color: #7a6659;
  font-size: 14px;
  font-weight: 400;
}

/* FAQ */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid #d9cbbb;
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 1.35;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--color-clay);
  font-family: var(--font-sans);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq details p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.faq details a {
  color: var(--color-clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Price table */

.ptable {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--color-line);
  background: rgba(251, 247, 242, 0.92);
  overflow: hidden;
}

.ptable-row {
  display: grid;
  gap: 6px;
  border-top: 1px solid #e3d6c8;
  padding: 18px 22px;
}

.ptable-row:first-child {
  border-top: 0;
}

.ptable-name {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: 21px;
  line-height: 1.25;
}

.ptable-name a:hover {
  color: var(--color-clay);
}

.ptable-meta {
  display: block;
  margin-top: 4px;
  color: #7a6659;
  font-family: var(--font-sans);
  font-size: 14px;
}

.ptable-price {
  color: var(--color-clay);
  font-weight: 700;
  font-size: 16px;
}

/* Appointment schedule */

.schedule {
  display: grid;
  gap: 12px;
}

.schedule-day {
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--color-line);
  background: rgba(251, 247, 242, 0.9);
  padding: 16px 14px;
}

.schedule-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #e3d6c8;
  padding-bottom: 10px;
  margin-bottom: 4px;
  color: #6d594d;
  font-size: 13px;
  font-weight: 600;
}

.schedule-title .text-primary {
  color: var(--color-clay);
}

.schedule-time {
  display: block;
  border: 1px solid #ddcfc0;
  background: #fff;
  padding: 8px 0;
  color: #4f3d33;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.schedule-time:hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
}

.schedule-empty {
  color: #9d8a7c;
  font-size: 13px;
  text-align: center;
}

/* Forms */

.form-grid {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #6d594d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.field input,
.field select {
  border: 1px solid #d8c7b7;
  background: #fff;
  padding: 12px 14px;
  color: #4f3d33;
  font: inherit;
  font-size: 16px;
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--color-clay);
  outline-offset: 1px;
}

.form-status {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.form-status[data-state="error"] {
  color: #9a3412;
}

.form-status[data-state="success"] {
  color: #3f6212;
}

/* Reviews */

.review-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.review-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a725f;
  font-size: 12px;
}

.review-note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.65;
}

.quotes {
  display: grid;
  gap: 0;
  max-width: 760px;
}

.quote {
  display: grid;
  gap: 10px;
  border-top: 1px solid #dacdbe;
  padding: 22px 0;
  margin: 0;
}

.quote blockquote {
  margin: 0;
  color: #4f3d33;
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: clamp(17px, 4.4vw, 22px);
  line-height: 1.6;
  font-weight: 400;
}

.quote figcaption {
  color: #7a6659;
  font-size: 14px;
}

.slider {
  max-width: 760px;
}

.slider-track.quotes {
  display: block;
  max-width: none;
}

.slider-track .quote {
  border-top: 0;
  padding: 4px 0 12px;
}

.slider.is-ready .slider-track .quote {
  display: none;
}

.slider.is-ready .slider-track .quote.is-active {
  display: grid;
  animation: quote-in 0.35s ease;
}

@keyframes quote-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.slider-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d8c7b7;
  background: #fbf7f2;
  color: var(--color-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  border-color: var(--color-clay);
  color: var(--color-clay);
}

.slider-status {
  margin: 0;
  color: #7a6659;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Contact */

.contact {
  display: grid;
  gap: 28px;
  text-align: center;
}

.contact .label {
  margin-bottom: 8px;
}

.contact a,
.contact p {
  margin: 0;
  color: #4f3d33;
  font-size: 17px;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--color-clay);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #ede1d4;
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* Footer */

.footer {
  border-top: 1px solid var(--color-line);
  background: #f4ece3;
  padding: 36px 0 0;
}

.foot-grid {
  display: grid;
  gap: 28px;
  border-bottom: 1px solid #e8dccc;
  padding: 24px 0 32px;
  text-align: center;
  justify-items: center;
}

.foot-grid > div {
  width: 100%;
}

.foot-grid p {
  margin-left: auto;
  margin-right: auto;
}

.foot-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: #4f3c33;
}

.foot-links a {
  display: block;
  text-align: center;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  color: #4f3c33;
}

.foot-contact li {
  display: flex;
  justify-content: center;
  width: 100%;
}

.foot-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.foot-contact svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--color-clay);
}

.foot-grid .label {
  margin-bottom: 14px;
}

.foot-grid a:hover {
  color: var(--color-clay);
}

.foot-bar {
  padding: 18px 0;
  color: #6d594d;
  font-size: 13px;
  text-align: center;
}

.foot-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.foot-bar span,
.foot-bar a {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 36em;
  text-align: center;
  overflow-wrap: anywhere;
}

.small {
  color: #6d594d;
  font-size: 14px;
  line-height: 1.6;
}

.small a {
  color: #6d594d;
}

.small a:hover {
  color: var(--color-clay);
}

/* Certificates */

.cert-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert-item {
  margin: 0;
  border: 1px solid var(--color-line);
  background: #fbf7f2;
  padding: 8px;
}

.cert-item img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.cert-item figcaption {
  padding: 10px 4px 2px;
  color: #806a5a;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Responsive */

@media (max-width: 1023px) {
  .top-inner {
    position: relative;
    justify-content: flex-end;
  }

  .brand-link {
    position: absolute;
    left: 0;
    right: 112px;
    top: 50%;
    transform: translateY(-50%);
    flex: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  .brand-link .label {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .top-book {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 13px;
  }

  main > section {
    padding: 40px 0;
  }

  main > section.hero {
    padding: 0;
  }

  .article p,
  .article li,
  .lead {
    font-size: 16px;
  }

  .article h2 {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .card {
    padding: 16px;
  }

  .card h3 {
    font-size: 21px;
  }

  .article-break {
    margin: 24px auto;
    padding: 18px;
  }

  .signal-panel {
    padding: 16px;
  }

  .visual-card.portrait-card,
  .visual-card.headshot-card {
    max-width: none;
  }

  .foot-links {
    font-size: 14px;
  }

  .faq summary {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 36px;
  }

  .hero-img {
    height: min(62vw, 520px);
  }

  .hero-grid {
    padding: 28px 0 48px;
  }

  .review-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
  }

  .three,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }

  .gallery-item {
    border-radius: 24px;
  }

  .ptable-row {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: baseline;
  }

  .ptable-price {
    text-align: right;
  }

  .schedule {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-frame iframe {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    padding: 0 56px;
  }

  .brand {
    font-size: 30px;
  }

  .nav {
    display: flex;
  }

  .menu-box,
  .top-tools {
    display: none;
  }

  .hero-img {
    position: absolute;
    inset: 0 0 0 auto;
    width: 52%;
    height: auto;
  }

  .hero-img::after {
    background: linear-gradient(
      90deg,
      var(--color-paper) 0%,
      rgba(247, 241, 232, 0.94) 10%,
      rgba(247, 241, 232, 0.35) 32%,
      rgba(247, 241, 232, 0.04) 58%
    );
  }

  .hero-img img {
    object-position: 54% 8%;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    min-height: calc(100vh - var(--header-h));
    padding: 64px 0;
    text-align: left;
  }

  .hero h1,
  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero .actions {
    justify-content: flex-start;
  }

  .two {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .three {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-head {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
    margin-bottom: 36px;
  }

  .contact {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }

  .foot-grid {
    grid-template-columns: 1.1fr 1.35fr 1fr;
    align-items: start;
  }

  .foot-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    column-gap: 24px;
    row-gap: 10px;
    max-width: 360px;
  }

  .foot-bar .wrap {
    flex-direction: row;
    justify-content: center;
    gap: 16px 28px;
  }

  .schedule {
    grid-template-columns: repeat(7, 1fr);
  }

  .map-frame iframe {
    height: 380px;
  }

  .grid {
    gap: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
