@font-face {
  font-family: "Emilea";
  src: url("assets/Emilea.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf8f4;
  --surface: #fffdf9;
  --surface-strong: #f3ece2;
  --surface-soft: #efe7dc;
  --text: #2d221c;
  --muted: #77665a;
  --accent: #aa8968;
  --accent-deep: #8b6a4f;
  --line: rgba(170, 137, 104, 0.32);
  --border: rgba(72, 53, 40, 0.14);
  --shadow: 0 28px 80px rgba(84, 58, 37, 0.1);
  --radius-xl: 2.25rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --cream: #faf8f4;
  --cream-soft: #f3eadf;
  --section-wave-height: clamp(4.5rem, 8vw, 6.5rem);
  --hero-wave-height: clamp(4.5rem, 9vw, 7rem);
  --content-width: 2200px;
  --page-gutter: clamp(1.5rem, 4vw, 4.5rem);
  --serif: "Emilea", "Lora", "Noto Serif", "Georgia", serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(180deg, #f8f2e9 0%, var(--bg) 26%);
}

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

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

button,
input {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  z-index: 30;
  background: var(--text);
  color: var(--surface);
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 248, 0.98));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: clip;
}

.site-header,
.section,
.site-footer {
  padding-inline: var(--page-gutter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 80px;
  padding-block: 0.9rem 0;
  background: transparent;
}

.site-header-inner,
.section-inner,
.site-footer-inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.site-header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0.2rem 0;
}

.brand-logo {
  width: clamp(8rem, 10vw, 9.75rem);
  height: auto;
}

.brand-logo-header {
  width: clamp(8.8rem, 11vw, 11rem);
  transition: filter 240ms ease;
  filter: brightness(0) saturate(100%) invert(92%) sepia(18%) saturate(300%) hue-rotate(316deg) brightness(102%) contrast(96%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.7rem, 2.1vw, 2.8rem);
  min-height: 56px;
  padding: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #f4eadb;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0;
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.72;
}

.site-header.is-scrolled .site-nav {
  color: var(--text);
}

.site-header.is-scrolled .brand-logo-header {
  filter: none;
}

.site-nav a.is-active {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.button-solid {
  background: var(--text);
  color: var(--surface);
  box-shadow: 0 14px 34px rgba(45, 34, 28, 0.12);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: #423128;
}

.button-outline {
  border-color: rgba(65, 47, 34, 0.24);
  background: transparent;
  color: var(--text);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: transparent;
  background: var(--accent);
  color: var(--surface);
}

.section {
  position: relative;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.section + .section {
  border-top: 1px solid rgba(91, 67, 50, 0.08);
}

.section-hero + .philosophy-section,
.services-section + .packages-section {
  border-top: 0;
}

.section-heading {
  max-width: 56rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.philosophy-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.philosophy-copy {
  display: grid;
  gap: 1.15rem;
}

.philosophy-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

.services-section .section-heading {
  max-width: 62rem;
}

.section-label,
.package-card-label {
  margin: 0.9rem 0 16px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
}

.section h1,
.section h2,
.section h3,
.site-footer h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section h1 {
  font-size: clamp(3.33rem, 4.77vw, 5.76rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  max-width: 8.5ch;
}

.section h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.74rem);
  max-width: 18ch;
}

.section h3 {
  font-size: clamp(1.53rem, 1.8vw, 1.89rem);
}

.section p,
.site-footer p,
.site-footer li {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.divider {
  display: block;
  width: 3rem;
  height: 1px;
  margin-block: 1.75rem;
  background: rgba(138, 106, 79, 0.46);
}

.philosophy-section .divider {
  margin-inline: auto;
}

.philosophy-section {
  background: var(--cream);
  border-top: 0;
}

.philosophy-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--section-wave-height) * -1 + 1px);
  height: var(--section-wave-height);
  background:
    center top / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 94C124 42 242 25 385 33C510 40 615 90 720 96C836 102 954 68 1084 51C1211 34 1329 38 1440 74V140H0Z'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.services-section {
  border-top: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--section-wave-height) * -0.46);
  height: calc(var(--section-wave-height) * 0.92);
  background:
    center center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23d7cdc1' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M-20 92C62 68 138 69 216 88C298 108 372 110 446 88C518 66 595 52 672 62C748 72 820 106 904 108C996 111 1071 71 1158 65C1252 58 1327 73 1460 104'/%3E%3Cpath d='M-24 118C51 104 125 115 194 129C273 146 346 132 417 110C487 89 562 80 644 92C719 103 794 136 878 138C964 141 1037 112 1112 102C1210 88 1292 92 1460 127'/%3E%3Cpath d='M-22 66C62 82 132 116 204 117C278 118 341 82 414 61C490 39 563 35 641 49C718 64 788 95 860 96C953 97 1025 63 1108 55C1217 45 1298 57 1460 86'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.packages-section .divider {
  margin-inline: auto;
}

.packages-section {
  border-top: 0;
}

.section-hero {
  position: relative;
  padding-inline: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #f4eadb;
  background: #1f140f;
  isolation: isolate;
  overflow: hidden;
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 9, 4, 0.1) 0%, rgba(20, 9, 4, 0.18) 100%),
    linear-gradient(90deg, rgba(22, 10, 5, 0.7) 0%, rgba(22, 10, 5, 0.5) 38%, rgba(22, 10, 5, 0.34) 62%, rgba(22, 10, 5, 0.56) 100%),
    url("assets/hero-background.jpg");
  background-size:
    cover,
    cover,
    auto 100%;
  background-position:
    center center,
    center center,
    center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.section-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--hero-wave-height);
  background:
    center bottom / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23faf8f4' d='M0 48C111 103 238 126 382 110C504 97 603 50 720 44C847 37 935 79 1062 91C1181 102 1288 88 1440 40V140H0Z'/%3E%3C/svg%3E");
  z-index: 0;
}

.section-hero .section-inner,
.section-hero .hero-copy,
.section-hero .hero-lines {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 6rem);
  min-height: min(100svh, 64rem);
  padding-inline: var(--page-gutter);
  padding-top: calc(80px + clamp(3.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero-kicker {
  margin-top: 2.55rem;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #f4eadb;
}

.hero-description {
  max-width: 28rem;
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 1rem;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14% 0 auto 12%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 231, 220, 0.82) 0%, rgba(239, 231, 220, 0) 70%);
  filter: blur(10px);
}

.hero-media-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  aspect-ratio: 0.84;
  overflow: hidden;
  border-radius: 38% 62% 34% 66% / 20% 41% 59% 80%;
  box-shadow: 0 26px 60px rgba(95, 72, 54, 0.18);
  background: linear-gradient(180deg, #f1e7da 0%, #eadbca 100%);
}

.section-lines {
  position: absolute;
  pointer-events: none;
  color: var(--line);
}

.section-lines svg {
  width: 100%;
  height: 100%;
}

.section-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
}

.hero-lines {
  left: -1px;
  right: -1px;
  bottom: 2rem;
  height: 9rem;
  color: rgba(250, 248, 244, 0.34);
  opacity: 0.95;
}

.hero-copy .button {
  margin-top: 2rem;
}

.section-hero .divider {
  background: rgba(244, 234, 219, 0.7);
}

.section-hero h1,
.section-hero p {
  color: #f4eadb;
}

.section-hero .button-solid {
  background: transparent;
  color: #f4eadb;
  border-color: rgba(244, 234, 219, 0.62);
  box-shadow: none;
}

.section-hero .button-solid:hover,
.section-hero .button-solid:focus-visible {
  background: rgba(244, 234, 219, 0.12);
}

.placeholder-panel {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(170, 137, 104, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #efe4d5 0%, #e4d2bf 100%);
}

.placeholder-panel::before,
.placeholder-panel::after {
  content: "";
  position: absolute;
  inset: auto 8% 16% 8%;
  height: 1px;
  background: rgba(170, 137, 104, 0.25);
  transform: rotate(-8deg);
}

.placeholder-panel::after {
  inset: auto 8% 23% 8%;
  transform: rotate(6deg);
}

h2,h3,h4,h5,h6 {
  -webkit-text-stroke: 1px currentColor;
  letter-spacing: 0.5px !important;
}

h1 {
  -webkit-text-stroke: 1.5px currentColor;
  letter-spacing: 0.5px !important;
}

.placeholder-panel span {
  position: relative;
  z-index: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(110, 84, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  color: #7d6552;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 761px) {
  .title-lock span {
    display: block;
   
  }

  .hero-copy .title-lock {
    max-width: none;
  }

  .services-section .title-lock,
  .gift-copy .title-lock,
  .packages-section .title-lock,
  .philosophy-section .title-lock {
    max-width: none;
  }
}

@keyframes hero-background-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.has-motion .section:not(.section-hero) {
  opacity: 0;
  transform: translateY(2.6rem);
  transition:
    opacity 760ms ease-in,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-motion .section:not(.section-hero).is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(91, 67, 50, 0.12);
  border-bottom: 1px solid rgba(91, 67, 50, 0.12);
}

.feature-card {
  padding: 2rem 1rem 2rem 0;
}

.feature-card + .feature-card {
  padding-left: 2rem;
  border-left: 1px solid rgba(91, 67, 50, 0.12);
}

.feature-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  background: var(--surface-soft);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease, filter 360ms ease;
}

.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.service-card-body {
  padding-top: 1rem;
}

.service-card-body h3 {
  margin-bottom: 0.9rem;
}

.service-card-body p {
  line-height: 1.55;
}

.package-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.package-offer-card {
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(91, 67, 50, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 253, 249, 0.88);
  text-align: center;
}

.packages-section .package-offer-count {
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
}

.packages-section .package-offer-discount {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.2vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text);
}

.gift-section {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(180deg, #f2e9de 0%, #f6efe5 100%);
}

.gift-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.gift-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 22%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 320'%3E%3Cg fill='none' stroke='rgba(170,137,104,0.18)' stroke-width='1.15' stroke-linecap='round'%3E%3Cpath d='M-18 188C92 121 160 130 230 155C296 178 360 161 417 142C475 123 539 112 612 142C699 177 760 187 921 122'/%3E%3Cpath d='M-18 231C54 192 112 193 177 209C249 227 299 204 372 193C442 182 507 214 572 225C659 238 752 204 921 244'/%3E%3Cpath d='M-18 150C43 139 98 84 175 91C246 96 306 158 379 160C463 161 513 103 596 102C694 100 764 167 921 148'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.85;
}

.gift-card-visual,
.gift-copy {
  position: relative;
  z-index: 1;
}

.gift-card {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 1.58;
  margin-inline: auto;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 249, 243, 0.92));
  box-shadow: 0 22px 48px rgba(98, 76, 56, 0.15);
  transform: rotate(-8deg);
  overflow: hidden;
}

.gift-card-pattern {
  position: absolute;
  inset: auto -2% -2% -2%;
  height: 55%;
  color: rgba(170, 137, 104, 0.32);
}

.gift-card-pattern path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.05;
}

.gift-card-logo {
  width: min(48%, 12rem);
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  opacity: 0.88;
}

.gift-copy h2 {
  max-width: 9ch;
}

.gift-copy .section-label {
  margin-bottom: 1.5rem;
}

.gift-copy p:not(.section-label) {
  margin-top: 1.5rem;
}

.contact-section {
  background: #fff;
}

.contact-heading {
  margin-inline: auto;
}

.contact-heading .title-lock,
.contact-section .divider {
  margin-inline: auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
  gap: clamp(1.75rem, 4vw, 4rem);
  max-width: 62rem;
  margin-inline: auto;
}

.contact-map {
  display: block;
  width: 100%;
  min-height: clamp(14rem, 26vw, 18rem);
  max-width: none;
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: 0 22px 44px rgba(84, 58, 37, 0.1);
}

.contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(14rem, 26vw, 18rem);
  object-fit: cover;
  transition: transform 260ms ease;
}

.contact-map:hover img,
.contact-map:focus-visible img {
  transform: scale(1.02);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: 28rem;
  margin-left: 0;
}

.contact-intro-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.75vw, 1.58rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.contact-address {
  color: inherit;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.95rem;
  width: 100%;
}

.contact-social-title {
  margin-top: 0.5rem;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  color: var(--accent-deep);
  background: #f8f2e9;
  border: 1px solid rgba(170, 137, 104, 0.22);
  box-shadow: 0 16px 28px rgba(84, 58, 37, 0.08);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-action svg {
  width: 1.28rem;
  height: 1.28rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-social-link .contact-action svg {
  width: 1.18rem;
  height: 1.18rem;
}

.contact-social-link:first-child .contact-action svg {
  fill: currentColor;
  stroke: none;
}

.contact-link:hover .contact-action,
.contact-link:focus-visible .contact-action,
.contact-social-link:hover .contact-action,
.contact-social-link:focus-visible .contact-action {
  transform: translateY(-2px);
  color: var(--text);
  background: #f3eadf;
  border-color: rgba(170, 137, 104, 0.4);
  box-shadow: 0 20px 34px rgba(84, 58, 37, 0.12);
}

.contact-link:focus-visible .contact-action,
.contact-social-link:focus-visible .contact-action,
.contact-map:focus-visible {
  outline: 2px solid rgba(170, 137, 104, 0.45);
  outline-offset: 4px;
}

.contact-link:hover .contact-value,
.contact-link:focus-visible .contact-value,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--text);
}

.contact-value {
  color: var(--muted);
  line-height: 1.5;
  transition: color 220ms ease;
}

.site-footer {
  position: relative;
  padding-top: 4.8rem;
  padding-bottom: 2.4rem;
  background: linear-gradient(180deg, #f3eadf 0%, #efe5d8 100%);
  border-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--section-wave-height) * -1 + 1px);
  height: var(--section-wave-height);
  background:
    center bottom / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23f3eadf' d='M0 48C111 103 238 126 382 110C504 97 603 50 720 44C847 37 935 79 1062 91C1181 102 1288 88 1440 40V140H0Z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2.4rem;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.newsletter-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: min(100%, 30rem);
  margin-inline: auto;
  border: 1px solid rgba(91, 67, 50, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: #9a8b80;
}

.newsletter-form button {
  width: 3.4rem;
  height: 3.4rem;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  font-size: 1.1rem;
  cursor: pointer;
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(91, 67, 50, 0.12);
  width: 100%;
}

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

.footer-meta p,
.footer-meta a {
  font-size: 12px;
  line-height: 1.4;
}

.footer-meta p {
  text-align: left;
}

.mobile-app-nav {
  display: none;
}

.mobile-app-nav a {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0.68rem 0.32rem;
  border-radius: 0.72rem;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.mobile-app-nav a:hover,
.mobile-app-nav a:focus-visible {
  opacity: 0.8;
}

.mobile-app-label {
  white-space: nowrap;
}

.mobile-app-nav a.is-active {
  color: var(--text);
  opacity: 1;
}

.mobile-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1;
}

.mobile-app-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a:focus-visible,
.button:focus-visible,
.mobile-app-nav a:focus-visible,
.newsletter-form input:focus-visible,
.newsletter-form button:focus-visible {
  outline: 2px solid rgba(170, 137, 104, 0.6);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero-inner,
  .gift-inner,
  .contact-inner,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

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

  .package-offers {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card + .feature-card {
    padding: 1.75rem 0;
    border-left: 0;
  }

  .feature-card + .feature-card {
    border-top: 1px solid rgba(91, 67, 50, 0.12);
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy,
  .section-heading {
    max-width: none;
  }

  .hero-lines {
    right: 4rem;
    bottom: 1.5rem;
  }

  .gift-card {
    max-width: 29rem;
  }

  .contact-map,
  .contact-details {
    max-width: none;
  }

  .contact-details {
    margin-left: 0;
  }

  .contact-details {
    order: 1;
  }

  .contact-map {
    order: 2;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    position: absolute;
    min-height: 72px;
    padding-top: 0.85rem;
  }

  .site-header-inner {
    min-height: 72px;
  }

  .site-header-bar {
    justify-content: center;
  }

  .brand-logo {
    width: 7.9rem;
  }

  .brand-logo-header {
    width: 7.9rem;
  }

  .site-nav {
    display: none;
  }

  .brand-mark {
    min-height: 52px;
    padding: 0.12rem 0;
  }

  .mobile-app-nav {
    position: fixed;
    left: 50%;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    z-index: 24;
    transform: translateX(-50%);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.2rem;
    width: min(calc(100% - 1rem), 32rem);
    padding: 0.42rem;
    border-radius: 1rem;
    border: 1px solid rgba(91, 67, 50, 0.12);
    background: var(--bg);
    box-shadow: 0 16px 32px rgba(84, 58, 37, 0.08);
  }

  .site-footer {
    padding-bottom: calc(7.6rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .section h1 {
    font-size: clamp(2.66rem, 11.7vw, 4.1rem);
    max-width: 8ch;
  }

  .section h2 {
    font-size: clamp(2.03rem, 9.9vw, 2.93rem);
    max-width: 10ch;
  }

  .section-heading h2,
  .gift-copy h2 {
    inline-size: min(100%, 10ch);
    margin-inline: auto;
  }

  .contact-details {
    align-items: flex-start;
    text-align: left;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-socials {
    justify-content: center;
  }

  .contact-link {
    justify-content: flex-start;
  }

  .contact-inner {
    gap: 1.5rem;
  }

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

  .hero-kicker {
    margin-top: 2.05rem;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }

  .hero-media-frame {
    aspect-ratio: 0.88;
  }

  .hero-lines {
    left: -1px;
    right: -1px;
    bottom: 0.75rem;
    height: 6rem;
    opacity: 0.6;
  }

  .gift-card {
    transform: rotate(-5deg);
  }

  .footer-meta {
    width: 100%;
    flex-direction: column;
    gap: 0.65rem;
  }

  .footer-meta p,
  .footer-meta-links {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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

  .section-hero::before {
    animation: none;
    transform: none;
  }

  .has-motion .section:not(.section-hero) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
