:root {
  --bg: #f6f3ef;
  --paper: #fbf9f6;
  --surface: #ffffff;
  --text: #1e1b18;
  --muted: #6d675f;
  --soft: #f0ebe4;
  --line: rgba(30, 27, 24, 0.12);
  --line-strong: rgba(30, 27, 24, 0.24);
  --shadow: 0 18px 48px rgba(33, 28, 22, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 199, 186, 0.36), transparent 32%),
    linear-gradient(180deg, #f8f5f1 0%, #f4f0ea 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 246, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.footer-logo {
  width: 74px;
  height: auto;
}

.brand-wordmark {
  width: 230px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after,
.footer-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: #fff;
  background: var(--text);
  box-shadow: 0 12px 26px rgba(30, 27, 24, 0.14);
}

.button-dark:hover {
  background: #302b26;
}

.button-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(30, 27, 24, 0.16);
}

.button-light:hover {
  background: #fff;
  border-color: rgba(30, 27, 24, 0.3);
}

.hero {
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-brand {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1;
}

.display,
.section-title,
.legal-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.display {
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  max-width: 9ch;
}

.hero-text,
.section-text,
.legal-intro,
.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 44ch;
  font-size: 1.04rem;
}

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

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-notes li {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(30, 27, 24, 0.08);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.hero-visual figcaption {
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(30, 27, 24, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 92px 0;
}

.section-soft,
.legal-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(240, 235, 228, 0.42));
}

.section-intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 12ch;
}

.section-text {
  margin: 0;
  max-width: 58ch;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 1fr) minmax(260px, 1.4fr) minmax(160px, 0.9fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number,
.fact-label,
.visit-label,
.legal-label,
.brand-nameplate {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-row h3,
.legal-block h2,
.legal-block h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

.service-row h3 {
  font-size: 1.55rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-meta {
  font-size: 0.9rem;
}

.section-action {
  margin-top: 26px;
}

.text-link {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: var(--text);
  font-weight: 600;
}

.split-layout,
.visit-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.fact-panel,
.visit-panel,
.legal-summary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 27, 24, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.fact-row,
.visit-row,
.legal-summary-row {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.fact-row:last-child,
.visit-row:last-child,
.legal-summary-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-row p,
.visit-row p,
.legal-summary-row p,
.legal-summary-row a {
  margin: 6px 0 0;
  color: var(--text);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: #fff;
}

.brand-card p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.visit-actions {
  padding-top: 4px;
}

.site-footer {
  padding: 16px 0 24px;
  border-top: 1px solid rgba(30, 27, 24, 0.08);
  background: rgba(251, 249, 246, 0.9);
}

.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  gap: 10px;
  font-weight: 600;
}

.footer-logo {
  width: 56px;
}

.footer-address,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(30, 27, 24, 0.08);
}

.legal-page {
  padding-bottom: 72px;
}

.legal-hero {
  padding: 72px 0 38px;
}

.legal-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-intro {
  margin: 18px 0 0;
  max-width: 60ch;
}

.legal-section {
  padding-top: 18px;
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-block h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.legal-block h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
}

.legal-block p,
.legal-block ul {
  margin: 0;
}

.legal-block ul {
  padding-left: 18px;
  color: var(--muted);
}

.notice-box {
  padding: 20px 22px;
  border: 1px solid rgba(148, 110, 73, 0.28);
  border-radius: 20px;
  background: rgba(255, 246, 236, 0.75);
}

.notice-box p {
  color: #7a5a3e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .header-row {
    grid-template-columns: auto 1fr;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .visit-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-notes,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row {
    grid-template-columns: 60px 1fr;
  }

  .service-row > p:nth-child(3),
  .service-row > p:nth-child(4) {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .header-row {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 14px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .section,
  .legal-hero {
    padding: 72px 0;
  }

  .section-title {
    max-width: 100%;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand-logo {
    width: 64px;
  }

  .brand-wordmark {
    width: 180px;
  }

  .display {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-notes,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row > p:nth-child(3),
  .service-row > p:nth-child(4) {
    grid-column: auto;
  }

  .fact-panel,
  .visit-panel,
  .legal-summary {
    padding: 22px;
    border-radius: 22px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Classic Home */

.classic-home {
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

.classic-home .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #ebebeb;
}

.classic-home .header-inner {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}

.classic-home .logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.classic-home .logo-image {
  width: 68px;
  height: auto;
}

.classic-home .logo-wordmark {
  width: 230px;
}

.classic-home .logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.classic-home .logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a1a1a;
}

.classic-home .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
}

.classic-home .nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.classic-home .nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #666;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.classic-home .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.classic-home .nav a:hover {
  color: #1a1a1a;
}

.classic-home .nav a:hover::after {
  transform: scaleX(1);
}

.classic-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 52px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.classic-home .btn-dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.classic-home .btn-dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.classic-home .btn-white {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.classic-home .btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.classic-home .btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #c8c8c8;
}

.classic-home .btn-outline:hover {
  border-color: #1a1a1a;
  transform: translateY(-2px);
}

.classic-home .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.classic-home .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.classic-home .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.classic-home .label-light {
  color: rgba(255, 255, 255, 0.55);
}

.classic-home .section {
  padding: 96px 0;
}

.classic-home .section-alt {
  background: #f8f8f7;
}

.classic-home .section-head {
  text-align: center;
  margin-bottom: 52px;
}

.classic-home .section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: #1a1a1a;
}

.classic-home .section-head h2 em {
  font-style: italic;
  color: #888;
}

.classic-home .section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
}

.classic-home .section-cta {
  text-align: center;
  margin-top: 48px;
}

.classic-home .hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.classic-home .hero-img-wrap {
  position: absolute;
  inset: 0;
}

.classic-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.classic-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.45) 50%, rgba(10, 10, 10, 0.55) 100%);
}

.classic-home .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 80px 24px 60px;
}

.classic-home .hero-loc {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.classic-home .hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 500;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
}

.classic-home .hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

.classic-home .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 36px;
}

.classic-home .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.classic-home .hero-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.classic-home .hero-strip .dot {
  color: rgba(255, 255, 255, 0.3);
}

.classic-home .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.classic-home .service-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.classic-home .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.classic-home .service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.classic-home .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.classic-home .service-card:hover .service-img img {
  transform: scale(1.06);
}

.classic-home .service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.classic-home .service-body {
  padding: 22px 22px 26px;
}

.classic-home .service-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.classic-home .service-body p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.72;
  margin-bottom: 16px;
}

.classic-home .service-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  background: #f5f5f5;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
}

.classic-home .studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.classic-home .studio-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.classic-home .studio-img-main {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.classic-home .studio-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.classic-home .studio-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.classic-home .studio-img-badge .logo-name {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.classic-home .studio-img-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

.classic-home .studio-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.classic-home .info-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.classic-home .info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 6px;
}

.classic-home .info-card p {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.6;
}

.classic-home .info-card strong {
  color: #1a1a1a;
}

.classic-home .info-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  transition: border-color 0.2s;
  width: fit-content;
}

.classic-home .info-link:hover {
  border-color: #1a1a1a;
}

.classic-home .stack-note {
  margin-top: 6px;
}

.classic-home .studio-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.classic-home .studio-copy p {
  font-size: 0.97rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 14px;
}

.classic-home .studio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.classic-home .studio-list li {
  font-size: 0.93rem;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
}

.classic-home .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.classic-home .studio-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.classic-home .brands-logo-strip {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  overflow: hidden;
}

.classic-home .brand-logo-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 32px;
  transition: background 0.22s ease;
  min-width: 0;
}

.classic-home .brand-logo-item:hover {
  background: #f9f9f8;
}

.classic-home .brand-logo-item img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.22s, filter 0.22s;
}

.classic-home .brand-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.classic-home .brand-svg {
  height: 28px;
  width: auto;
  opacity: 0.45;
  transition: opacity 0.22s;
  display: block;
}

.classic-home .brand-logo-item:hover .brand-svg {
  opacity: 0.9;
}

.classic-home .brand-desc-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}

.classic-home .brand-desc-text {
  font-size: 0.8rem;
  color: #bbb;
}

.classic-home .brand-divider {
  width: 1px;
  background: #ebebeb;
  flex-shrink: 0;
}

.classic-home .cta-full {
  position: relative;
  overflow: hidden;
}

.classic-home .cta-full-bg {
  position: absolute;
  inset: 0;
}

.classic-home .cta-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.classic-home .cta-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}

.classic-home .cta-full-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px;
}

.classic-home .cta-full-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 36px;
}

.classic-home .cta-full-inner h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.classic-home .cta-or {
  margin-top: 20px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.4);
}

.classic-home .cta-or a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.classic-home .contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.classic-home .contact-card {
  background: #f8f8f7;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.classic-home .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.classic-home .contact-card-dark {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.classic-home .contact-card-dark:hover {
  background: #222;
}

.classic-home .contact-icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.classic-home .contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a1a;
}

.classic-home .contact-card-dark h3,
.classic-home .contact-card-dark .contact-icon {
  color: #fff;
}

.classic-home .contact-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
}

.classic-home .contact-card-dark p {
  color: rgba(255, 255, 255, 0.5);
}

.classic-home .contact-card strong {
  color: #1a1a1a;
}

.classic-home .contact-card-dark strong {
  color: #fff;
}

.classic-home .stack-note-large {
  margin-top: 8px;
}

.classic-home .footer {
  background: #111;
  color: rgba(255, 255, 255, 0.45);
  padding: 22px 0 14px;
}

.classic-home .footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.classic-home .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.classic-home .footer-logo-image {
  width: 52px;
  height: auto;
}

.classic-home .footer-logo-text {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.classic-home .footer-brand p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.classic-home .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.classic-home .footer-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.46);
  transition: color 0.2s;
}

.classic-home .footer-nav a:hover {
  color: #fff;
}

.classic-home .footer-bottom {
  padding-top: 12px;
  font-size: 0.76rem;
  text-align: center;
}

body.booking-modal-open {
  overflow: hidden;
}

.classic-home .booking-modal[hidden] {
  display: none;
}

.classic-home .booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.classic-home .booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(8px);
}

.classic-home .booking-modal__dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.classic-home .booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.08);
  color: #1a1a1a;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.classic-home .booking-modal__close:hover {
  background: rgba(17, 17, 17, 0.14);
  transform: scale(1.03);
}

.classic-home .booking-modal__header,
.classic-home .booking-modal__footer {
  padding: 26px 28px;
  background: #fff;
}

.classic-home .booking-modal__header {
  border-bottom: 1px solid #ebebeb;
  padding-right: 82px;
}

.classic-home .booking-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b8b8b;
}

.classic-home .booking-modal__header h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}

.classic-home .booking-modal__text {
  margin: 0;
  max-width: 62ch;
  color: #777;
  font-size: 0.95rem;
  line-height: 1.7;
}

.classic-home .booking-modal__frame-wrap {
  background: #f3f3f2;
}

.classic-home .booking-modal__frame-wrap iframe {
  display: block;
  width: 100%;
  height: min(72vh, 820px);
  border: 0;
  background: #fff;
}

.classic-home .booking-modal__footer {
  border-top: 1px solid #ebebeb;
}

@media (max-width: 1024px) {
  .classic-home .services-grid,
  .classic-home .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .classic-home .studio-layout {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .classic-home .studio-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .classic-home .studio-info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .classic-home .brands-logo-strip {
    flex-wrap: wrap;
  }

  .classic-home .brand-divider {
    display: none;
  }

  .classic-home .brand-logo-item {
    flex: 0 0 calc(50% - 1px);
    border-bottom: 1px solid #ebebeb;
  }

  .classic-home .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .classic-home .footer-nav {
    justify-content: flex-start;
  }

  .classic-home .booking-modal {
    padding: 16px;
  }

  .classic-home .booking-modal__dialog {
    max-height: calc(100vh - 32px);
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .classic-home .section {
    padding: 72px 0;
  }

  .classic-home .nav {
    display: none;
  }

  .classic-home .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }
}

@media (max-width: 540px) {
  .classic-home .header-inner {
    width: min(100% - 28px, 1160px);
    gap: 20px;
    height: auto;
    min-height: 72px;
    padding: 12px 0;
  }

  .classic-home .logo-image {
    width: 56px;
  }

  .classic-home .logo-wordmark {
    width: 180px;
  }

  .classic-home .btn-dark {
    display: none;
  }

  .classic-home .services-grid,
  .classic-home .contact-grid {
    grid-template-columns: 1fr;
  }

  .classic-home .studio-info-cards {
    grid-template-columns: 1fr;
  }

  .classic-home .brand-logo-item {
    flex: 0 0 100%;
  }

  .classic-home .hero-strip {
    gap: 10px;
  }

  .classic-home .hero-strip .dot {
    display: none;
  }

  .classic-home .booking-modal {
    padding: 0;
  }

  .classic-home .booking-modal__dialog {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .classic-home .booking-modal__header,
  .classic-home .booking-modal__footer {
    padding: 20px;
  }

  .classic-home .booking-modal__header {
    padding-right: 72px;
  }

  .classic-home .booking-modal__frame-wrap iframe {
    height: calc(100vh - 214px);
  }
}
