:root {
  color-scheme: dark;
  --espresso: #0d0806;
  --walnut: #24140d;
  --walnut-2: #342116;
  --cedar: #4c2d1c;
  --clay: #8f462f;
  --rosewood: #6f2f28;
  --accent: #c77f70;
  --bronze: #9b5639;
  --silver: #7f8786;
  --gold-plan: #bd842f;
  --cane: #c77f70;
  --linen: #f4e6d2;
  --linen-2: #e6cfaf;
  --paper: #fff4e4;
  --ink: #fff2df;
  --muted: rgba(255, 242, 223, 0.72);
  --dark-ink: #20120b;
  --dark-muted: rgba(32, 18, 11, 0.68);
  --line: rgba(199, 127, 112, 0.22);
  --dark-line: rgba(72, 40, 24, 0.2);
  --content: 1180px;
  --gutter: 28px;
  --radius: 6px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--espresso);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #120a07 0%, #24140d 38%, #150c08 74%, #0d0806 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--cane);
  color: var(--dark-ink);
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--linen);
  color: var(--dark-ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  min-height: 94px;
  padding: 16px var(--gutter);
  border-bottom: 1px solid rgba(244, 230, 210, 0.14);
  background: linear-gradient(180deg, rgba(13, 8, 6, 0.86), rgba(13, 8, 6, 0.44));
  backdrop-filter: blur(16px);
  overflow: visible;
}

.brand {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 214px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}

.header-floating-logo {
  position: absolute;
  top: 158px;
  left: 50%;
  z-index: 4;
  display: block;
  width: min(380px, 24vw);
  transform: translateX(-50%);
  transform-origin: center top;
  will-change: top, width;
}

.header-floating-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.62));
}

.nav-links {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  justify-self: end;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.login-cta,
.nav-cta,
.button {
  border-radius: 999px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a {
  padding: 10px 13px;
  color: rgba(255, 242, 223, 0.76);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(244, 230, 210, 0.08);
}

.nav-cta,
.button-primary {
  border: 1px solid rgba(244, 230, 210, 0.28);
  background: #8f462f;
  color: #fff4e4;
  box-shadow: inset 0 1px 0 rgba(255, 244, 228, 0.18), 0 18px 34px rgba(52, 25, 13, 0.28);
}

.header-actions {
  position: relative;
  z-index: 2;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.login-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 242, 223, 0.3);
  color: rgba(255, 242, 223, 0.86);
  background: rgba(255, 242, 223, 0.055);
  backdrop-filter: blur(10px);
}

.login-cta:hover {
  border-color: rgba(255, 242, 223, 0.58);
  color: var(--ink);
  background: rgba(255, 242, 223, 0.1);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
}

.nav-cta:hover,
.button-primary:hover {
  background: #a25338;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 154px var(--gutter) 72px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--content)) / 2));
  right: max(var(--gutter), calc((100vw - var(--content)) / 2));
  bottom: 28px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 230, 210, 0.42), transparent);
  content: "";
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.18) saturate(0.74) contrast(0.96) brightness(0.84);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 8, 6, 0.94) 0%, rgba(30, 16, 9, 0.78) 34%, rgba(53, 29, 16, 0.3) 68%, rgba(13, 8, 6, 0.22) 100%),
    linear-gradient(0deg, rgba(13, 8, 6, 0.78) 0%, rgba(13, 8, 6, 0.18) 48%, rgba(13, 8, 6, 0.64) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  transform: translateY(28px);
}

.hero-logo-stage {
  display: block;
  height: clamp(172px, 12.9vw, 204px);
  margin: 0 auto clamp(46px, 5.6vh, 70px);
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7.1vw, 6.65rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 242, 223, 0.86);
  font-size: 1.09rem;
  line-height: 1.82;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button-secondary {
  border-color: rgba(255, 242, 223, 0.36);
  background: rgba(255, 242, 223, 0.06);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(255, 242, 223, 0.72);
  background: rgba(255, 242, 223, 0.1);
}

.button-secondary.light {
  border-color: rgba(255, 242, 223, 0.42);
}

.hero-facts {
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.hero-facts div {
  border-top: 1px solid rgba(210, 161, 123, 0.42);
  padding-top: 14px;
}

.hero-facts dt {
  color: rgba(255, 242, 223, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 3px;
  color: var(--ink);
  font-size: 1.46rem;
  font-weight: 800;
}

.section {
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 112px 0;
}

main > section[id] {
  scroll-margin-top: 112px;
}

#top {
  scroll-margin-top: 0;
}

.booking-section {
  width: 100%;
  max-width: none;
  padding: 112px max(var(--gutter), calc((100vw - var(--content)) / 2));
  background:
    linear-gradient(180deg, rgba(244, 230, 210, 0.03), rgba(244, 230, 210, 0)),
    #1a0f0a;
  border-top: 1px solid rgba(244, 230, 210, 0.12);
  border-bottom: 1px solid rgba(244, 230, 210, 0.12);
}

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

.booking-intro p:not(.section-kicker) {
  color: rgba(255, 242, 223, 0.74);
  font-size: 1.08rem;
}

.booking-note {
  max-width: 600px;
  margin-top: 2px;
  color: rgba(255, 242, 223, 0.7);
  font-size: 0.98rem;
}

.booking-note a {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.booking-card,
.square-widget-shell,
.set-card,
.plan-card {
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.booking-card {
  position: sticky;
  top: 112px;
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 244, 228, 0.97), rgba(230, 207, 175, 0.97));
  color: var(--dark-ink);
}

.booking-card span {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-card strong {
  max-width: 11ch;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.8vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 0.9;
  font-variant-numeric: proportional-nums lining-nums;
}

.booking-card p,
.booking-card li {
  color: var(--dark-muted);
}

.booking-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.booking-card li {
  position: relative;
  padding-left: 18px;
}

.booking-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rosewood);
  content: "";
}

.square-widget-shell {
  overflow: hidden;
  padding: 18px;
  background: #f4e6d2;
  color: var(--dark-ink);
}

.square-widget-shell:has(iframe) {
  min-height: 720px;
}

.square-widget-shell iframe {
  width: 100% !important;
  min-height: 680px !important;
  border: 0 !important;
  border-radius: var(--radius);
  background: #f4e6d2;
}


.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 230, 210, 0.12);
  border-bottom: 1px solid rgba(244, 230, 210, 0.12);
  background: #2a180f;
}

.proof-item {
  min-height: 136px;
  padding: 30px var(--gutter);
  border-right: 1px solid rgba(244, 230, 210, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-top: 9px;
  color: #fff2df;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.05;
}

.proof-item strong em {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.76;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 64px;
  align-items: start;
}

.audience-heading {
  max-width: 450px;
}

.audience-heading p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(255, 242, 223, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.audience-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(244, 230, 210, 0.14);
  border-top-color: rgba(199, 127, 112, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 242, 223, 0.045), rgba(255, 242, 223, 0.018)),
    rgba(36, 20, 13, 0.72);
}

.audience-card span {
  color: rgba(255, 242, 223, 0.44);
  font-weight: 800;
}

.audience-card h3 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.98;
}

.audience-card p {
  margin-top: 16px;
  color: rgba(255, 242, 223, 0.68);
  line-height: 1.68;
}

.services-section {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 242, 223, 0.045), rgba(255, 242, 223, 0.015)),
    #1a0f0a;
}

.services-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.services-heading p:not(.section-kicker) {
  margin-top: 16px;
  color: rgba(255, 242, 223, 0.72);
  font-size: 1.06rem;
  line-height: 1.8;
}

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

.service-card {
  display: grid;
  grid-column: span 2;
  min-height: 300px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(244, 230, 210, 0.14);
  border-radius: var(--radius);
  background: rgba(36, 20, 13, 0.72);
}

.featured-service,
.development-service {
  background:
    linear-gradient(180deg, rgba(255, 242, 223, 0.07), rgba(255, 242, 223, 0.022)),
    rgba(52, 33, 22, 0.78);
}

.featured-service {
  border-color: rgba(199, 127, 112, 0.38);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
  min-height: 250px;
}

.service-card span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.96;
}

.service-card p {
  color: rgba(255, 242, 223, 0.68);
  line-height: 1.65;
}

.service-card .text-link {
  align-self: end;
  color: var(--ink);
  border-color: var(--accent);
}

.service-card .text-link:hover {
  color: var(--accent);
}

.platform-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 230, 210, 0.14);
}

.platform-strip span {
  color: rgba(255, 242, 223, 0.68);
  font-weight: 800;
}

.platform-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-strip li {
  border: 1px solid rgba(244, 230, 210, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 242, 223, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-section,
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: start;
}

h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(72, 40, 24, 0.14);
  border-bottom: 1px solid rgba(72, 40, 24, 0.14);
  background: linear-gradient(180deg, #f7ead8 0%, #e5cbaa 100%);
  color: var(--dark-ink);
}

.intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.82) contrast(0.98);
}

.intro-grid {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 96px max(var(--gutter), calc((100vw - var(--content)) / 2)) 96px 72px;
}

.intro-grid .section-kicker {
  color: var(--clay);
}

.intro-grid h2 {
  margin-top: 0;
  color: var(--dark-ink);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 242, 223, 0.75);
  font-size: 1.03rem;
  line-height: 1.85;
}

.intro-section .intro-copy {
  color: var(--dark-muted);
}

.section-heading {
  max-width: 810px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 880px;
}

.section-heading p:not(.section-kicker) {
  margin-top: 16px;
  color: rgba(255, 242, 223, 0.72);
  font-size: 1.08rem;
}

.set-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-bottom: 48px;
}

.set-card:nth-child(2) {
  transform: translateY(42px);
}

.set-card,
.plan-card {
  overflow: hidden;
  background: linear-gradient(180deg, #f6e8d3 0%, #e6cfaf 100%);
  color: var(--dark-ink);
}

.set-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.set-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.82) contrast(0.98);
}

.set-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.set-body .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.set-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.set-topline h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.08rem;
  font-weight: 600;
  line-height: 0.95;
}

.set-topline span {
  color: var(--clay);
  font-weight: 800;
}

.set-body p,
.plan-card p,
.workflow-list p,
.included-item p,
.faq-list p,
.contact-content p {
  color: var(--dark-muted);
}

.set-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
  color: rgba(32, 18, 11, 0.72);
}

.set-body li {
  position: relative;
  padding-left: 18px;
}

.set-body li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rosewood);
  content: "";
}

.text-link {
  justify-self: start;
  border-bottom: 2px solid var(--clay);
  color: #552817;
  font-weight: 800;
}

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

.included-section {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 242, 223, 0.055), rgba(255, 242, 223, 0.02)),
    #2b180f;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.included-item {
  border-top: 2px solid rgba(210, 161, 123, 0.62);
  padding-top: 18px;
}

.included-item:nth-child(2) {
  border-color: rgba(143, 70, 47, 0.82);
}

.included-item:nth-child(3) {
  border-color: rgba(183, 137, 103, 0.72);
}

.included-item:nth-child(4) {
  border-color: rgba(111, 47, 40, 0.8);
}

.included-item span {
  color: rgba(255, 242, 223, 0.48);
  font-weight: 800;
}

.included-item h3 {
  margin-top: 12px;
}

.included-item p {
  margin-top: 10px;
  color: rgba(255, 242, 223, 0.68);
}

.workflow-section {
  align-items: center;
}

.workflow-media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  object-fit: cover;
  filter: sepia(0.12) saturate(0.82) contrast(0.98);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
}

.workflow-content {
  border-left: 1px solid var(--line);
  padding-left: 46px;
}

.workflow-list {
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
}

.workflow-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--linen);
  color: var(--dark-ink);
  font-weight: 800;
}

.workflow-list p {
  margin-top: 6px;
  color: rgba(255, 242, 223, 0.68);
}

.plans-section {
  border-top: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  display: grid;
  align-content: start;
  padding: 30px;
}

.plan-card > p:first-child {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card:nth-child(1) > p:first-child {
  color: var(--bronze);
}

.featured-plan > p:first-child {
  color: var(--silver);
}

.plan-card:nth-child(3) > p:first-child {
  color: var(--gold-plan);
}

.plan-card h3 {
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 9vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 0.88;
  font-variant-numeric: proportional-nums lining-nums;
}

.plan-card span {
  display: block;
  margin-top: 5px;
  color: rgba(32, 18, 11, 0.56);
  font-weight: 800;
}

.plan-card p:last-of-type {
  margin-top: 22px;
}

.plan-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  margin-top: 26px;
  border: 1px solid rgba(72, 40, 24, 0.18);
  border-radius: 999px;
  padding: 0 17px;
  background: var(--clay);
  color: var(--paper);
  font-weight: 800;
}

.plan-cta:hover {
  background: var(--rosewood);
}

.featured-plan {
  background:
    linear-gradient(180deg, rgba(111, 47, 40, 0.1), rgba(111, 47, 40, 0)),
    #ead4b5;
  border-color: rgba(111, 47, 40, 0.28);
}

.faq-section {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  padding: 106px max(var(--gutter), calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(72, 40, 24, 0.16);
  border-bottom: 1px solid rgba(72, 40, 24, 0.16);
  background: linear-gradient(180deg, #f8ead6 0%, #e4c9a7 100%);
  color: var(--dark-ink);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
  padding: 104px max(var(--gutter), calc((100vw - var(--content)) / 2));
  background: linear-gradient(180deg, #f7ead8 0%, #e5cbaa 100%);
  color: var(--dark-ink);
}

.inquiry-copy {
  max-width: 420px;
}

.inquiry-copy .section-kicker {
  color: var(--clay);
}

.inquiry-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--dark-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label span {
  color: var(--dark-ink);
  font-weight: 800;
}

.inquiry-form label .select-wrap {
  position: relative;
  display: block;
  color: inherit;
  font-weight: inherit;
}

.inquiry-form label .select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid rgba(32, 18, 11, 0.76);
  border-bottom: 1.8px solid rgba(32, 18, 11, 0.76);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  content: "";
}

.inquiry-form em {
  color: rgba(32, 18, 11, 0.58);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 18, 11, 0.55);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 248, 237, 0.3);
  color: var(--dark-ink);
  font: inherit;
}

.inquiry-form select {
  min-height: 52px;
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(143, 70, 47, 0.82);
  background: rgba(255, 248, 237, 0.48);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(143, 70, 47, 0.12);
}

.inquiry-form textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: 24px;
}

.inquiry-form button {
  justify-self: start;
  min-width: 150px;
  margin-top: 6px;
}

.faq-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(72, 40, 24, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.52);
  box-shadow: 0 20px 44px rgba(72, 40, 24, 0.12);
}

details {
  border-bottom: 1px solid rgba(72, 40, 24, 0.18);
  padding: 0 24px;
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--dark-ink);
  font-size: 1.06rem;
  font-weight: 800;
}

summary::marker {
  color: var(--clay);
}

details p {
  max-width: 660px;
  padding: 0 0 22px;
  color: rgba(32, 18, 11, 0.74);
}

.faq-section .section-kicker {
  color: var(--clay);
}

.faq-section h2 {
  color: var(--dark-ink);
}

.contact-section {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 74px var(--gutter);
  isolation: isolate;
}

.contact-section > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.14) saturate(0.76) contrast(0.96) brightness(0.9);
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 8, 6, 0.92), rgba(13, 8, 6, 0.74) 46%, rgba(13, 8, 6, 0.34)),
    linear-gradient(0deg, rgba(13, 8, 6, 0.82), rgba(13, 8, 6, 0.22));
  content: "";
}

.contact-content {
  width: min(730px, 100%);
  margin-left: max(0px, calc((100% - var(--content)) / 2));
}

.contact-content h2 {
  max-width: 680px;
}

.contact-content p {
  max-width: 630px;
  margin-top: 18px;
  color: rgba(255, 242, 223, 0.78);
  font-size: 1.1rem;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  color: rgba(255, 242, 223, 0.82);
  font-style: normal;
}

address a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 242, 223, 0.3);
}

address a:hover {
  border-color: var(--accent);
  color: #fff2df;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px var(--gutter);
  border-top: 1px solid var(--line);
  background: #0d0806;
  color: rgba(255, 242, 223, 0.66);
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .set-grid,
  .service-grid,
  .plan-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .set-grid {
    padding-bottom: 0;
  }

  .set-card:nth-child(2) {
    transform: none;
  }

  .set-card:last-child,
  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (min-width: 1081px) {
  .booking-card {
    min-height: 720px;
  }
}

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

  .site-header {
    gap: 14px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 120px;
  }

  .header-floating-logo {
    width: min(330px, 42vw);
  }

  .hero-logo-stage {
    height: min(176px, 22vw);
    margin-bottom: 42px;
  }

  .audience-section,
  .intro-section,
  .inquiry-section,
  .workflow-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .audience-heading,
  .inquiry-copy {
    max-width: 720px;
  }

  .intro-media img {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .intro-grid {
    padding: 76px var(--gutter);
  }

  .workflow-content {
    border-left: 0;
    padding-left: 0;
  }

  .workflow-media img {
    aspect-ratio: 16 / 10;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
    padding-block: 12px;
  }

  .brand {
    display: inline-flex;
  }

  .header-actions {
    grid-column: 2;
  }

  .login-cta {
    display: none;
  }

  .brand-logo {
    width: 154px;
    max-height: 58px;
  }

  .header-floating-logo {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .hero::after {
    bottom: 18px;
  }

  .hero-logo-stage {
    display: none;
  }

  .hero-content {
    transform: none;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(13, 8, 6, 0.92), rgba(13, 8, 6, 0.5) 50%, rgba(13, 8, 6, 0.84)),
      linear-gradient(90deg, rgba(13, 8, 6, 0.88), rgba(13, 8, 6, 0.3));
  }

  h1 {
    font-size: 3.02rem;
  }

  h2 {
    font-size: 2.42rem;
  }

  .hero-copy,
  .section-heading p:not(.section-kicker),
  .booking-intro p:not(.section-kicker),
  .intro-copy,
  .contact-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 30px;
  }

  .hero-facts div {
    padding-top: 10px;
  }

  .hero-facts dt {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .hero-facts dd {
    font-size: 1.08rem;
  }

  .proof-strip,
  .audience-grid,
  .service-grid,
  .set-grid,
  .plan-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .set-card:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .set-card:last-child,
  .plan-card:last-child {
    grid-column: auto;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 230, 210, 0.12);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section,
  .booking-section,
  .services-section,
  .inquiry-section,
  .faq-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .platform-strip {
    display: grid;
  }

  .platform-strip ul {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .audience-actions {
    flex-direction: column;
  }

  .service-card {
    min-height: auto;
  }

  .audience-card {
    min-height: auto;
    padding: 22px;
  }

  .set-body,
  .plan-card,
  .booking-card {
    padding: 22px;
  }

  .square-widget-shell {
    padding: 12px;
  }

  .square-widget-shell:has(iframe) {
    min-height: 540px;
  }

  .square-widget-shell iframe {
    min-height: 500px !important;
  }

  .contact-section {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
