:root {
  color-scheme: light;
  --bg: #fbf7f3;
  --ink: #141817;
  --muted: #626a66;
  --surface: #ffffff;
  --charcoal: #101615;
  --rose: #c65f84;
  --rose-dark: #a84d70;
  --line: rgba(20, 24, 23, 0.16);
  --line-light: rgba(255, 255, 255, 0.28);
  --radius: 8px;
  --container: 1120px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.icon-sprite {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 12px 40px;
  color: #ffffff;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 243, 0.95);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(16, 22, 21, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  opacity: 0.88;
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: #ffffff;
}

.hero__media,
.hero__media::after,
.hero__media img {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 22, 21, 0.92) 0%, rgba(16, 22, 21, 0.7) 48%, rgba(16, 22, 21, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 22, 21, 0.5) 0%, rgba(16, 22, 21, 0.18) 54%, rgba(16, 22, 21, 0.44) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 130px 24px 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f3dce5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--rose);
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1;
}

h1 {
  max-width: 680px;
  font-size: 5.4rem;
}

h2 {
  font-size: 3.15rem;
}

.hero__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--rose);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--rose-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}

.button--ghost:hover {
  background: #ffffff;
  color: var(--ink);
}

.button--instagram {
  border-color: rgba(198, 95, 132, 0.28);
  background: rgba(198, 95, 132, 0.08);
  color: var(--rose-dark);
}

.button--instagram:hover {
  background: rgba(198, 95, 132, 0.14);
}

.hero__meta {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.intro-section {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.intro-copy p,
.contact-copy p,
.service-list dd {
  color: var(--muted);
}

.intro-copy p {
  max-width: 640px;
  margin: 22px 0 0;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.service-heading {
  display: grid;
  align-content: start;
  gap: 18px;
}

.service-list h2 {
  font-size: 2.55rem;
}

.service-list dl {
  margin: 0;
}

.service-list dl div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-list dt {
  font-weight: 800;
}

.service-list dd {
  margin: 0;
}

.text-link {
  width: fit-content;
  color: var(--rose);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.gallery-section {
  padding: 76px 0;
  background: var(--charcoal);
  color: #ffffff;
}

.gallery-heading,
.gallery-row {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  font-size: 2.7rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.gallery-row img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92);
}

.contact-section {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.64fr);
  gap: 26px 64px;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  margin: 20px 0 0;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-style: normal;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
}

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

.contact-panel .button {
  width: 100%;
}

.map-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px 40px;
  background: var(--charcoal);
  color: #ffffff;
}

.site-footer p,
.site-footer small {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
  font-size: 0.82rem;
}

.legal-page {
  background: var(--bg);
}

.legal {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: 76px 0;
}

.legal h1 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 3.5rem;
}

.legal h2 {
  margin-top: 38px;
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.3;
}

.legal p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 12px 24px;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-image {
    max-width: 620px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-list .text-link {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 35;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(16, 22, 21, 0.12);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero__content {
    padding: 112px 20px 64px;
  }

  h1 {
    max-width: 340px;
    font-size: 3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero__lead,
  .hero__actions,
  .hero__meta {
    max-width: 340px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .contact-section,
  .gallery-heading,
  .gallery-row {
    width: min(calc(100% - 32px), var(--container));
  }

  .intro-section,
  .contact-section,
  .gallery-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-list dl div,
  .gallery-heading,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .service-list dl div {
    gap: 8px;
  }

  .gallery-row img {
    height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 24px 92px;
  }

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

  .legal h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .contact-panel {
    padding: 22px;
  }

}
