:root {
  --bg: #f7f0ea;
  --surface: rgba(255, 250, 246, 0.74);
  --surface-strong: #fffaf6;
  --text: #1d1718;
  --muted: #675a5d;
  --line: rgba(29, 23, 24, 0.1);
  --accent: #d89aa3;
  --accent-deep: #b66d78;
  --accent-soft: #ead0d3;
  --shadow: 0 24px 70px rgba(57, 35, 41, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100% - 2rem));
  --title-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 154, 163, 0.2), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(234, 208, 211, 0.65), transparent 20%),
    linear-gradient(180deg, #fdf7f1 0%, #f7f0ea 46%, #f2e8e0 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-space {
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--title-font);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.1rem, 11vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
}

h3 {
  font-size: 1.45rem;
}

p,
li,
address {
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  line-height: 1.7;
  color: var(--muted);
}

address {
  font-style: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 240, 234, 0.8);
  border-bottom: 1px solid rgba(29, 23, 24, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(57, 35, 41, 0.16);
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.33rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.8);
}

.menu-toggle span {
  width: 1.05rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav {
  position: relative;
}

.menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(18rem, calc(100vw - 2rem));
  display: none;
  margin: 0;
  padding: 1rem;
  list-style: none;
  border: 1px solid rgba(29, 23, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.94);
  box-shadow: var(--shadow);
}

.menu.is-open {
  display: grid;
  gap: 0.35rem;
}

.menu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(216, 154, 163, 0.12);
}

.nav-cta {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--text), #46363a);
  color: #fff8f3;
}

.button-secondary {
  border-color: rgba(29, 23, 24, 0.12);
  background: rgba(255, 250, 246, 0.7);
}

.button-ghost {
  border-color: rgba(182, 109, 120, 0.35);
  color: var(--accent-deep);
  background: rgba(216, 154, 163, 0.08);
}

.hero {
  padding: 2rem 0 4.5rem;
}

.hero-grid,
.split-layout,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  padding-top: 1rem;
}

.hero-copy h1,
.hero-copy h2,
.section-heading h2,
.signature-panel h2,
.contact-copy h2 {
  text-wrap: balance;
}

.hero-text {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.08rem, 3vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(29, 23, 24, 0.08);
  border-radius: 20px;
  background: rgba(255, 250, 246, 0.58);
  color: var(--text);
}

.hero-media,
.intro-media,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img,
.intro-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(216, 154, 163, 0.18);
  filter: blur(10px);
}

.intro-copy,
.contact-copy {
  align-self: center;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid rgba(29, 23, 24, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.82), rgba(255, 247, 242, 0.62)),
    rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 34px rgba(57, 35, 41, 0.06);
}

.service-card p {
  margin: 0.85rem 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-action {
  margin-top: 1.6rem;
  text-align: center;
}

.signature-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(216, 154, 163, 0.48), transparent 25%),
    linear-gradient(135deg, #1c1718 0%, #37282d 60%, #5a4047 100%);
  box-shadow: var(--shadow);
}

.signature-panel::before,
.signature-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 244, 240, 0.16);
}

.signature-panel::before {
  width: 14rem;
  height: 14rem;
  top: -5rem;
  right: -4rem;
}

.signature-panel::after {
  width: 10rem;
  height: 10rem;
  bottom: -3rem;
  left: 15%;
}

.signature-panel h2,
.signature-panel p,
.signature-panel .eyebrow {
  position: relative;
  color: #fff6f1;
}

.contact-grid {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(29, 23, 24, 0.08);
  border-radius: 32px;
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(29, 23, 24, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 26rem;
}

.contact-actions {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(216, 154, 163, 0.2), transparent 22%),
    linear-gradient(180deg, #120f10 0%, #1c1718 100%);
  color: #fff6f1;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 246, 241, 0.14);
}

.footer-grid p {
  margin: 0;
}

.footer-grid p,
.footer-grid a {
  color: #fff6f1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--title-font);
  font-size: 1.35rem;
  color: #fff6f1;
  min-width: 0;
}

.footer-logo {
  width: 5rem;
  height: 5rem;
  padding: 0.35rem;
  border-radius: 50%;
  object-fit: contain;
  background: #fff8f3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.footer-brand-text {
  display: block;
  line-height: 1;
}

.footer-info {
  display: grid;
  gap: 0.35rem;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.86;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 48rem) {
  .section-space {
    padding: 6.5rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
    gap: 1.5rem 2rem;
  }

  .footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    justify-content: flex-end;
  }
}

@media (min-width: 64rem) {
  .hero {
    padding: 3rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 29.99rem) {
  .site-header {
    padding: 0.75rem 0;
  }

  .nav-shell {
    gap: 0.75rem;
  }

  .brand {
    gap: 0.7rem;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 2.8rem;
    height: 2.8rem;
    flex-shrink: 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.25rem 0 3.25rem;
  }

  .hero-copy {
    padding-top: 0.25rem;
  }

  .hero-text {
    margin-top: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .gallery-action .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-points li,
  .service-card {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-space {
    padding: 3.75rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .signature-panel {
    border-radius: 28px;
  }

  .contact-grid {
    padding: 1.2rem;
    gap: 1.35rem;
    border-radius: 26px;
  }

  .map-frame {
    border-radius: 26px;
  }

  .map-frame iframe {
    min-height: 20rem;
  }

  .footer-brand {
    font-size: 1.15rem;
  }

  .footer-logo {
    width: 4.2rem;
    height: 4.2rem;
  }

  .brand-text small {
    max-width: 11rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

@media (min-width: 30rem) and (max-width: 47.99rem) {
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions .button,
  .gallery-action .button {
    width: 100%;
  }

  .map-frame iframe {
    min-height: 22rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
