@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ivory: #faf7f2;
  --beige: #f4ece1;
  --rose: #c48b81;
  --rose-soft: #f8ede9;
  --gold: #c5a059;
  --charcoal: #1a1918;
  --ink: #24211f;
  --muted: #756e68;
  --line: rgba(196, 139, 129, 0.22);
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 22px 54px -20px rgba(36, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e1c8a2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 em,
h1 em {
  color: var(--rose);
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -12px rgba(26, 25, 24, 0.5);
}

.button span {
  font-size: 1.05rem;
  font-weight: 400;
}

.button-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.button-rose {
  background: var(--rose);
  color: var(--white);
}

.button-light {
  background: var(--ivory);
  color: var(--charcoal);
}

.button-outline-light {
  border-color: rgba(250, 247, 242, 0.45);
  color: var(--ivory);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--rose);
}

.text-link-light {
  border-color: rgba(250, 247, 242, 0.55);
  color: var(--ivory);
}

.section {
  padding: 142px 0;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(250, 247, 242, 0.92);
  color: var(--charcoal);
  box-shadow: 0 12px 28px -25px var(--charcoal);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-copy em {
  margin-top: 4px;
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-link {
  position: relative;
  padding: 7px 0;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.82;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  opacity: 1;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 43px;
  padding: 0 18px;
  font-size: 0.66rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  max-height: 940px;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.hero-image,
.editorial-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-image {
  background-image: url("https://images.pexels.com/photos/7750122/pexels-photo-7750122.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=1800");
  background-position: center 60%;
  transform: scale(1.04);
  animation: hero-image-in 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(26, 25, 24, 0.8) 0%,
      rgba(26, 25, 24, 0.52) 48%,
      rgba(26, 25, 24, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(26, 25, 24, 0.38), transparent 55%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 55px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: #efdbc1;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 37px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  max-width: 670px;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 8vw, 8.5rem);
  font-weight: 500;
  line-height: 0.87;
}

.hero-title em {
  display: inline-block;
  color: #dfb4aa;
}

.hero-description {
  max-width: 430px;
  margin-bottom: 35px;
  color: rgba(250, 247, 242, 0.76);
  font-size: 0.96rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 73px;
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.hero-rating strong {
  color: var(--ivory);
  font-size: 0.78rem;
}

.rating-stars,
.gold,
.stars-line {
  color: #e5c779;
  letter-spacing: 0.1em;
}

.rating-divider {
  width: 24px;
  height: 1px;
  background: rgba(250, 247, 242, 0.35);
}

.hero-side-note {
  position: absolute;
  right: 32px;
  bottom: 82px;
  z-index: 1;
  color: rgba(250, 247, 242, 0.68);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-cue-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes hero-image-in {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1.04);
  }
}

/* Highlights */

.highlights {
  background: var(--charcoal);
  color: var(--ivory);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 118px;
  padding: 20px 28px;
  border-right: 1px solid rgba(250, 247, 242, 0.12);
}

.highlight-item:first-child {
  padding-left: 0;
}

.highlight-item:last-child {
  border: 0;
}

.highlight-icon {
  color: var(--gold);
  font-size: 1.42rem;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.highlight-item strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.highlight-item div span:last-child {
  color: rgba(250, 247, 242, 0.58);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About */

.about-section {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 12%;
}

.about-visual {
  position: relative;
  min-height: 550px;
}

.image-frame {
  overflow: hidden;
  background: var(--beige);
}

.image-frame img {
  height: 100%;
  transition: transform 0.8s ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.about-image-main {
  position: absolute;
  top: 0;
  left: 8%;
  width: 64%;
  height: 475px;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 245px;
  border: 12px solid var(--ivory);
}

.about-badge {
  position: absolute;
  bottom: 41px;
  left: 0;
  display: flex;
  width: 105px;
  height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--rose);
  transform: rotate(-10deg);
}

.about-badge span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.about-badge small {
  color: var(--muted);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.about-copy h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 460px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services */

.services-section {
  background: var(--beige);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16%;
  align-items: end;
  margin-bottom: 70px;
}

.split-heading > p {
  max-width: 370px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.88rem;
}

.split-heading h2 {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(245px, auto);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(196, 139, 129, 0.18);
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card-tall {
  grid-row: span 2;
  padding: 0;
  background: var(--charcoal);
  color: var(--ivory);
}

.service-image {
  height: 49%;
  overflow: hidden;
}

.service-image img {
  height: 100%;
  transition: transform 0.7s ease;
}

.service-card-tall:hover .service-image img {
  transform: scale(1.05);
}

.service-info {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px;
}

.service-number,
.service-card > .service-number {
  color: var(--rose);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card-tall .service-number {
  color: #e4c891;
}

.service-card h3 {
  margin: 18px 0 7px;
  font-size: 1.8rem;
}

.service-card p {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.service-card-tall p,
.service-card-dark p {
  color: rgba(250, 247, 242, 0.68);
}

.service-arrow {
  position: absolute;
  right: 27px;
  bottom: 24px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translate(4px, -4px);
}

.service-icon {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.service-card-rose {
  background: var(--rose-soft);
}

.service-card-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.service-card-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: #ead8ca;
}

.service-card-wide p {
  max-width: 280px;
}

.service-card-orbit {
  position: absolute;
  right: 45px;
  bottom: -80px;
  width: 205px;
  height: 205px;
  border: 1px solid rgba(196, 139, 129, 0.4);
  border-radius: 50%;
}

.service-card-orbit::after {
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(196, 139, 129, 0.3);
  border-radius: 50%;
  content: "";
}

.section-footnote {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: italic;
}

/* Editorial and gallery */

.editorial {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.editorial-image {
  background-image: url("https://images.pexels.com/photos/13068377/pexels-photo-13068377.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=1800");
  background-position: center;
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 25, 24, 0.9),
    rgba(26, 25, 24, 0.35) 68%,
    rgba(26, 25, 24, 0.15)
  );
}

.editorial-content {
  position: relative;
  z-index: 1;
}

.editorial h2 {
  margin-bottom: 38px;
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.editorial h2 em {
  color: #e0b2a7;
}

.editorial-caption {
  position: absolute;
  right: 40px;
  bottom: 36px;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.gallery-section {
  background: var(--ivory);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 18%;
  margin-bottom: 58px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 380px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  grid-template-rows: 250px 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--beige);
  text-align: left;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 25, 24, 0.62), transparent 50%);
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item img {
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover::after,
.gallery-item:hover span,
.gallery-item:focus-visible::after,
.gallery-item:focus-visible span {
  opacity: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* Reviews and why */

.reviews-section {
  background: var(--rose-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 13%;
  align-items: center;
}

.big-score {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.78;
}

.big-score span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 2.5rem;
  vertical-align: top;
}

.stars-line {
  margin: 34px 0 12px;
  font-size: 1.2rem;
}

.reviews-score > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.72rem;
}

.reviews-score .text-link {
  margin-top: 28px;
}

.reviews-copy h2 {
  font-size: clamp(3.3rem, 6vw, 5.5rem);
}

.reviews-copy > p {
  max-width: 480px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.91rem;
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 520px;
}

.theme-pill {
  padding: 10px 14px;
  border: 1px solid rgba(196, 139, 129, 0.3);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.69rem;
}

.theme-pill span {
  margin-right: 7px;
  color: var(--gold);
}

.review-note {
  margin-top: 19px !important;
  font-size: 0.68rem !important;
  font-style: italic;
}

.why-section {
  padding: 120px 0 136px;
  background: var(--charcoal);
  color: var(--ivory);
}

.why-heading h2 {
  font-size: clamp(3.2rem, 6vw, 5rem);
}

.why-heading h2 em {
  color: #e0b2a7;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(250, 247, 242, 0.2);
}

.why-item {
  min-height: 230px;
  padding: 27px 26px 20px 0;
  border-right: 1px solid rgba(250, 247, 242, 0.16);
}

.why-item:not(:first-child) {
  padding-left: 25px;
}

.why-item:last-child {
  border-right: 0;
}

.why-item > span {
  color: var(--gold);
  font-size: 0.68rem;
}

.why-item h3 {
  margin: 53px 0 13px;
  font-size: 1.52rem;
  font-weight: 500;
}

.why-item p {
  max-width: 200px;
  margin: 0;
  color: rgba(250, 247, 242, 0.58);
  font-size: 0.75rem;
}

/* Appointment and contact */

.appointment-section {
  background: var(--ivory);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12%;
  align-items: start;
}

.appointment-copy h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.appointment-copy > p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.86rem;
}

.appointment-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.appointment-contact a,
.appointment-contact > span:last-child {
  display: flex;
  flex-direction: column;
}

.appointment-contact span span,
.appointment-contact a span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.appointment-contact strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-rule {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.form-shell {
  padding: 39px 41px;
  background: var(--beige);
}

.form-row {
  margin-bottom: 23px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-row label span {
  color: var(--rose);
}

.form-row label .optional {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 400;
}

.form-row input,
.form-row select,
.form-row textarea {
  display: block;
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 33, 31, 0.23);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 1px var(--rose);
}

.form-row textarea {
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9c938b;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-submit {
  width: 100%;
  margin-top: 7px;
}

.form-disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  text-align: center;
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: #a44d45;
  font-size: 0.64rem;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: #a44d45;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 17px;
  border: 1px solid rgba(89, 114, 81, 0.3);
  background: #f1f5ed;
  color: #394b35;
}

.form-success strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.form-success p {
  margin: 3px 0 13px;
  font-size: 0.7rem;
}

.success-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: #718b67;
  color: white;
  font-size: 0.75rem;
}

.contact-section {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12%;
  align-items: center;
}

.contact-details h2 {
  font-size: clamp(3.5rem, 6vw, 5.8rem);
}

.contact-details h2 em {
  color: #e0b2a7;
}

.contact-block {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
}

.contact-label {
  margin-bottom: 5px;
  color: #e1c8a2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-block address,
.contact-block p,
.contact-block a {
  margin: 0;
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.82rem;
  font-style: normal;
}

.contact-block a:hover {
  color: var(--ivory);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 242, 0.2);
  background: #d9d2c9;
  color: var(--charcoal);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-color: #e4ddd2;
  background-image:
    linear-gradient(
      28deg,
      transparent 48%,
      #b5aea5 49%,
      #b5aea5 50%,
      transparent 51%
    ),
    linear-gradient(
      104deg,
      transparent 47%,
      #c3bbb0 48%,
      #c3bbb0 50%,
      transparent 51%
    ),
    linear-gradient(
      8deg,
      transparent 48%,
      #ede7dc 49%,
      #ede7dc 56%,
      transparent 57%
    ),
    linear-gradient(
      90deg,
      transparent 48%,
      #c3bbb0 49%,
      #c3bbb0 50%,
      transparent 51%
    );
  background-size:
    120px 150px,
    190px 190px,
    150px 100px,
    220px 220px;
  transform: rotate(-7deg) scale(1.2);
}

.map-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.38),
    transparent 50%,
    rgba(26, 25, 24, 0.18)
  );
  content: "";
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 51%;
  z-index: 1;
  display: flex;
  width: 155px;
  height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.92);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 13px rgba(250, 247, 242, 0.27);
}

.map-pin span {
  color: var(--rose);
  font-size: 1.3rem;
}

.map-pin strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
}

.map-pin small {
  color: var(--muted);
  font-size: 0.59rem;
}

.map-label {
  position: absolute;
  top: 19%;
  left: 16%;
  z-index: 1;
  padding: 8px 13px;
  border-radius: 4px;
  background: rgba(250, 247, 242, 0.78);
  color: var(--muted);
  font-size: 0.6rem;
}

.map-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
  transition: background 0.25s ease;
}

.map-link:hover {
  background: var(--rose);
}

/* Footer and lightbox */

.site-footer {
  padding: 75px 0 25px;
  background: #121111;
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.75fr 0.9fr;
  gap: 6%;
  padding-bottom: 68px;
}

.brand-light {
  color: var(--ivory);
}

.footer-brand p {
  max-width: 240px;
  margin: 25px 0 0;
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.75rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.7rem;
}

.footer-column a:hover {
  color: var(--ivory);
}

.footer-label {
  margin-bottom: 9px;
  color: #e1c8a2;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta {
  margin-top: 16px;
  color: var(--ivory);
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.13);
  color: rgba(250, 247, 242, 0.38);
  font-size: 0.61rem;
}

.back-to-top {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(250, 247, 242, 0.3);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1rem;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.back-to-top:hover {
  background: var(--rose);
  transform: translateY(-4px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 17, 17, 0.94);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox:not([hidden]) {
  opacity: 1;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(980px, 100%);
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.lightbox-panel figure {
  width: min(760px, calc(100% - 110px));
  margin: 0;
}

.lightbox-panel img {
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-panel figcaption {
  margin-top: 13px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  flex: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(250, 247, 242, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  font-size: 1.45rem;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: -55px;
  right: 0;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.lightbox-count {
  position: absolute;
  right: 0;
  bottom: -38px;
  left: 0;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.65rem;
  text-align: center;
}

/* Tablet */

@media (max-width: 900px) {
  .container {
    width: min(100% - 42px, 680px);
  }

  .site-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.62rem;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item:nth-child(2) {
    border-right: 0;
  }

  .highlight-item:nth-child(3),
  .highlight-item:nth-child(4) {
    border-top: 1px solid rgba(250, 247, 242, 0.12);
  }

  .highlight-item:nth-child(3) {
    padding-left: 0;
  }

  .about-grid,
  .appointment-grid,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about-visual {
    width: min(100%, 560px);
  }

  .about-copy {
    max-width: 590px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 210px 210px 190px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item:nth-child(2) {
    border-right: 0;
  }

  .why-item:nth-child(3),
  .why-item:nth-child(4) {
    border-top: 1px solid rgba(250, 247, 242, 0.16);
  }

  .why-item:nth-child(3) {
    padding-left: 0;
  }

  .why-item:nth-child(4) {
    padding-left: 25px;
  }

  .map-card {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / span 2;
  }

  .editorial {
    min-height: 560px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  html {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding: 94px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 22px;
    border: 1px solid var(--line);
    background: rgba(250, 247, 242, 0.98);
    color: var(--charcoal);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      visibility 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }

  .hero {
    min-height: 730px;
    height: 92svh;
  }

  .hero-image {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(26, 25, 24, 0.78), rgba(26, 25, 24, 0.3)),
      linear-gradient(0deg, rgba(26, 25, 24, 0.55), transparent 65%);
  }

  .hero-content {
    padding-top: 75px;
  }

  .hero-title {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .hero-description {
    max-width: 340px;
    font-size: 0.83rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-rating {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 48px;
  }

  .hero-side-note {
    right: 16px;
    bottom: 82px;
    font-size: 0.53rem;
  }

  .scroll-cue {
    right: 18px;
    bottom: 24px;
    transform: none;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-item {
    min-height: 103px;
    gap: 11px;
    padding: 16px 10px;
  }

  .highlight-item:first-child,
  .highlight-item:nth-child(3) {
    padding-left: 0;
  }

  .highlight-item:nth-child(2),
  .highlight-item:nth-child(4) {
    padding-right: 0;
  }

  .highlight-item strong {
    font-size: 1.1rem;
  }

  .highlight-icon {
    font-size: 1.1rem;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-image-main {
    left: 3%;
    width: 70%;
    height: 355px;
  }

  .about-image-small {
    width: 43%;
    height: 180px;
    border-width: 8px;
  }

  .about-badge {
    bottom: 20px;
    width: 82px;
    height: 82px;
  }

  .about-badge span {
    font-size: 1.1rem;
  }

  .about-copy .lead {
    font-size: 1.28rem;
  }

  .split-heading,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .split-heading h2,
  .gallery-heading h2 {
    font-size: 3.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 215px;
    padding: 20px;
  }

  .service-card-tall {
    grid-column: span 2;
    min-height: 440px;
  }

  .service-info {
    padding: 19px;
  }

  .service-card h3 {
    margin-top: 13px;
    font-size: 1.5rem;
  }

  .service-card p {
    font-size: 0.7rem;
  }

  .service-card-wide {
    min-height: 230px;
  }

  .service-card-orbit {
    right: -20px;
    bottom: -75px;
  }

  .editorial {
    min-height: 560px;
  }

  .editorial-image {
    background-position: 60% center;
  }

  .editorial-overlay {
    background: linear-gradient(
      90deg,
      rgba(26, 25, 24, 0.84),
      rgba(26, 25, 24, 0.2)
    );
  }

  .editorial h2 {
    font-size: 4.5rem;
  }

  .editorial-caption {
    right: 18px;
    font-size: 0.54rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 230px 190px;
    gap: 9px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item span {
    bottom: 12px;
    left: 13px;
    font-size: 1rem;
    opacity: 1;
    transform: none;
  }

  .gallery-item::after {
    opacity: 1;
  }

  .reviews-grid {
    gap: 45px;
  }

  .big-score {
    font-size: 7rem;
  }

  .reviews-copy h2 {
    font-size: 3.5rem;
  }

  .theme-pill {
    padding: 9px 11px;
    font-size: 0.64rem;
  }

  .why-section {
    padding: 90px 0 100px;
  }

  .why-list {
    grid-template-columns: 1fr 1fr;
  }

  .why-item {
    min-height: 210px;
    padding: 22px 14px 18px 0;
  }

  .why-item:not(:first-child) {
    padding-left: 14px;
  }

  .why-item h3 {
    margin-top: 38px;
    font-size: 1.3rem;
  }

  .why-item p {
    font-size: 0.7rem;
  }

  .form-shell {
    padding: 27px 20px;
  }

  .form-two {
    gap: 15px;
  }

  .appointment-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 35px;
  }

  .contact-rule {
    width: 100%;
    height: 1px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-card {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
    padding-bottom: 48px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-column:last-child {
    grid-column: span 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-right: 55px;
  }

  .back-to-top {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-panel {
    gap: 7px;
  }

  .lightbox-panel figure {
    width: calc(100% - 76px);
  }

  .lightbox-nav,
  .lightbox-close {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .lightbox-close {
    top: -48px;
  }

  .lightbox-panel img {
    max-height: 67vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image {
    animation: none;
    transform: none;
  }

  .button,
  .nav-link,
  .gallery-item img,
  .service-card,
  .image-frame img {
    transition: none;
  }
}