@font-face {
font-family: "Cormorant Garamond";
src: url("/assets/fonts/cormorant-600.woff2") format("woff2");
font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
font-family: "Cormorant Garamond";
src: url("/assets/fonts/cormorant-700.woff2") format("woff2");
font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
font-family: "Cormorant Garamond";
src: url("/assets/fonts/cormorant-500i.woff2") format("woff2");
font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
font-family: "Jost";
src: url("/assets/fonts/jost-400.woff2") format("woff2");
font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
font-family: "Jost";
src: url("/assets/fonts/jost-500.woff2") format("woff2");
font-weight: 500; font-style: normal; font-display: swap;
}
:root {
--cream: #fbefe6;
--cream-deep: #f4e0d2;
--cream-card: #fff8f2;
--rose: #b97a68;
--rose-deep: #9d5f4e;
--gold: #ab8434;
--ink: #2e2a28;
--ink-soft: #5d534e;
--serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
--sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;
--wrap: 1080px;
--radius: 14px;
--shadow: 0 18px 40px -22px rgba(93, 58, 42, 0.35);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
margin: 0;
background: var(--cream);
color: var(--ink);
font-family: var(--sans);
font-size: 1.06rem;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
font-family: var(--serif);
font-weight: 700;
line-height: 1.12;
color: var(--ink);
margin: 0 0 0.5em;
text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--rose-deep); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.site-header {
position: sticky; top: 0; z-index: 40;
background: rgba(251, 239, 230, 0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(185, 122, 104, 0.25);
}
.site-header .bar {
display: flex; align-items: center; gap: 1rem;
padding: 0.55rem clamp(1.1rem, 4vw, 2rem);
max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand b {
font-family: var(--serif); font-weight: 700; font-size: 1.22rem;
text-transform: uppercase; letter-spacing: 0.14em;
}
.brand small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--rose-deep); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(0.6rem, 2vw, 1.4rem); }
.site-nav a {
text-decoration: none; color: var(--ink-soft);
font-weight: 500; font-size: 0.95rem; letter-spacing: 0.05em;
padding: 0.3rem 0.1rem; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--rose-deep); border-bottom-color: var(--gold); }
.site-nav .cta {
background: var(--rose); color: #fff; border-radius: 999px;
padding: 0.55rem 1.2rem; border-bottom: 0; box-shadow: var(--shadow);
transition: transform 160ms ease, background 160ms ease;
}
.site-nav .cta:hover { background: var(--rose-deep); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; }
@media (max-width: 800px) {
.nav-toggle {
display: inline-flex; align-items: center; justify-content: center;
margin-left: auto; background: none; border: 1px solid rgba(185,122,104,0.4);
border-radius: 8px; padding: 0.45rem 0.7rem; font: inherit; color: var(--ink); cursor: pointer;
}
.site-nav {
display: none; position: absolute; top: 100%; left: 0; right: 0;
background: var(--cream-card); border-bottom: 1px solid rgba(185,122,104,0.25);
flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0;
}
.site-nav.open { display: flex; }
.site-nav a { padding: 0.7rem 1.4rem; border-bottom: 0; }
.site-nav .cta { margin: 0.6rem 1.4rem; text-align: center; }
}
@property --logo-p { syntax: "<number>"; inherits: true; initial-value: 0; }
@keyframes logo-contract { to { --logo-p: 1; } }
@media (prefers-reduced-motion: no-preference) {
:root { --logo-from: 86px; --logo-to: 54px; }
.brand img {
width: calc(var(--logo-from) * (1 - var(--logo-p)) + var(--logo-to) * var(--logo-p));
height: auto;
}
@supports (animation-timeline: scroll()) {
html {
animation: logo-contract linear both;
animation-timeline: scroll(root);
animation-range: 0 280px;
}
}
@media (max-width: 800px) {
:root { --logo-from: min(100vw - 2.4rem, 420px); --logo-to: 56px; }
.site-header .bar { position: relative; flex-wrap: wrap; padding-top: 0.8rem; }
.brand { flex-direction: column; align-items: center; width: 100%; text-align: center; gap: 0.5rem; }
.nav-toggle {
position: absolute; top: 0.75rem; right: clamp(1.1rem, 4vw, 2rem);
margin-left: 0; z-index: 2; background: var(--cream-card);
}
}
}
.keys-divider {
height: 26px;
background:
repeating-linear-gradient(90deg,
var(--ink) 0 9px, transparent 9px 26px),
linear-gradient(0deg, var(--cream-card) 0 100%);
background-size: 26px 14px, 100% 100%;
background-repeat: repeat-x, no-repeat;
background-position: center top, 0 0;
border-top: 2px solid var(--ink);
opacity: 0.85;
margin: 0;
}
.hero { padding: clamp(2.2rem, 7vw, 4.5rem) 0 clamp(2rem, 6vw, 4rem); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 800px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero .kicker {
font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
font-size: 0.78rem; color: var(--rose-deep); margin-bottom: 1rem;
}
.hero .tagline {
font-family: var(--serif); font-style: italic; font-weight: 500;
font-size: 1.35rem; color: var(--gold); margin: 0.4rem 0 1.4rem;
}
.hero .actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
border-radius: var(--radius); box-shadow: var(--shadow);
border: 6px solid var(--cream-card);
}
.hero-photo::after {
content: "♪"; position: absolute; top: -18px; right: -6px;
font-size: 2.6rem; color: var(--gold); opacity: 0.7; font-family: var(--serif);
}
.hero-quote {
margin: 1.5rem 0 0; padding: 0 0 0 1.1rem;
border-left: 3px solid var(--gold); max-width: 34rem;
}
.hero-quote p {
font-family: var(--serif); font-style: italic; font-weight: 500;
font-size: 1.12rem; line-height: 1.45; color: var(--ink-soft);
margin: 0 0 0.35rem;
}
.hero-quote cite {
font-style: normal; font-weight: 500; font-size: 0.78rem;
letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-deep);
}
.btn {
display: inline-block; background: var(--rose); color: #fff;
font-family: var(--sans); font-weight: 500; letter-spacing: 0.04em;
text-decoration: none; border: 0; cursor: pointer; font-size: 1rem;
padding: 0.8rem 1.7rem; border-radius: 999px; box-shadow: var(--shadow);
transition: transform 160ms ease, background 160ms ease;
}
.btn:hover { background: var(--rose-deep); color: #fff; transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--rose-deep); border: 1.5px solid var(--rose); box-shadow: none; }
.btn.ghost:hover { background: var(--rose); color: #fff; }
.band { padding: clamp(2.4rem, 7vw, 4.5rem) 0; }
.band.tinted { background: var(--cream-deep); }
.band.card-bg { background: var(--cream-card); }
.eyebrow {
font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
font-size: 0.75rem; color: var(--gold); margin: 0 0 0.6rem;
}
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 46rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.2rem); align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; margin-top: 1.8rem; }
.card-grid.pairs { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.card {
background: var(--cream-card); border-radius: var(--radius);
padding: 1.6rem 1.5rem; box-shadow: var(--shadow);
border-top: 3px solid var(--gold);
}
.card h3 { margin-top: 0.2rem; }
.card .note { font-size: 0.92rem; color: var(--ink-soft); }
.card .detail { overflow-wrap: anywhere; }
.card a.more { font-weight: 500; }
ul.ticks { list-style: none; padding: 0; margin: 0 0 1.2em; }
ul.ticks li { padding-left: 1.7rem; position: relative; margin-bottom: 0.55em; }
ul.ticks li::before {
content: "♩"; position: absolute; left: 0; top: -1px;
color: var(--rose); font-family: var(--serif); font-size: 1.15rem;
}
.listen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 1.6rem; }
.listen {
background: linear-gradient(150deg, var(--cream-card) 65%, var(--cream-deep));
border-radius: var(--radius); padding: 1.5rem 1.5rem 1.2rem;
box-shadow: var(--shadow); border-left: 3px solid var(--rose);
}
.listen h3 { font-style: italic; font-weight: 500; margin-bottom: 0.15rem; }
.listen .perf { font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 0.9rem; }
.listen audio { width: 100%; }
.fees-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0 0.6rem; background: var(--cream-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fees-table th, .fees-table td { padding: 0.95rem 1.2rem; text-align: left; }
.fees-table thead th {
background: var(--ink); color: var(--cream); font-family: var(--sans);
font-weight: 500; letter-spacing: 0.08em; font-size: 0.88rem; text-transform: uppercase;
}
.fees-table tbody tr + tr { border-top: 1px solid rgba(185,122,104,0.2); }
.fees-table td:first-child { font-weight: 500; }
.fees-table .save { color: var(--rose-deep); font-size: 0.88rem; }
.table-scroll { overflow-x: auto; }
.faq details {
background: var(--cream-card); border-radius: var(--radius);
box-shadow: var(--shadow); margin-bottom: 0.9rem;
border-left: 3px solid var(--gold);
}
.faq summary {
cursor: pointer; list-style: none; padding: 1.1rem 1.4rem;
font-family: var(--serif); font-size: 1.22rem; font-weight: 600;
position: relative; padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
content: "+"; position: absolute; right: 1.3rem; top: 50%;
transform: translateY(-50%); color: var(--rose); font-size: 1.5rem; font-family: var(--sans);
transition: transform 180ms ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); }
.testimonial {
background: var(--cream-card); border-radius: var(--radius);
box-shadow: var(--shadow); border-left: 3px solid var(--rose);
margin: 1.6rem 0 0; padding: clamp(1.6rem, 4vw, 2.4rem);
max-width: 46rem;
}
.testimonial p {
font-family: var(--serif); font-style: italic; font-weight: 500;
font-size: 1.24rem; line-height: 1.55;
}
.testimonial cite {
display: block; margin-top: 1.1rem;
font-style: normal; font-weight: 500; font-size: 0.85rem;
letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-deep);
}
.form { display: grid; gap: 1rem; }
.form label { display: grid; gap: 0.35rem; font-weight: 500; font-size: 0.95rem; }
.form input, .form select, .form textarea {
font: inherit; color: var(--ink);
padding: 0.7rem 0.9rem; border-radius: 10px;
border: 1.5px solid rgba(93, 83, 78, 0.35); background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus {
outline: 2px solid var(--rose); outline-offset: 1px; border-color: var(--rose);
}
.form .hp { position: absolute; left: -9999px; }
.form button { justify-self: start; }
[data-lead-success] { color: #2c6b3f; font-weight: 500; }
[data-lead-error] { color: #a33a2a; font-weight: 500; }
.site-footer { background: var(--ink); color: var(--cream); padding: 2.6rem 0 2rem; }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.site-footer .tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--cream-deep); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.site-footer a { color: var(--cream-deep); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer .fine { font-size: 0.85rem; color: rgba(251, 239, 230, 0.65); margin-top: 1.6rem; }
.reveal { transform: translateY(14px); opacity: 0.001; transition: transform 500ms ease, opacity 500ms ease; }
.reveal.in { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
.reveal { transform: none; opacity: 1; transition: none; }
}
.page-head { padding: clamp(2rem, 6vw, 3.4rem) 0 0.5rem; }
.page-head .eyebrow { margin-bottom: 0.4rem; }