/* =========================================================
   The Nazakat Makeup Studio & Salon
   One-page responsive website
   ========================================================= */

:root {
  --wine-950: #3b0715;
  --wine-900: #4e091b;
  --wine-800: #671026;
  --wine-700: #7d1731;
  --wine-600: #94203c;
  --rose-500: #c86e7e;
  --rose-200: #efcbd0;
  --gold-700: #9b6c21;
  --gold-600: #b9842e;
  --gold-500: #cb9d4f;
  --gold-300: #e5c887;
  --cream-50: #fffdfb;
  --cream-100: #fff8f2;
  --cream-200: #faefe6;
  --cream-300: #f4e3d6;
  --ink-900: #2d171d;
  --ink-700: #4d353b;
  --ink-500: #776268;
  --line: rgba(90, 45, 54, 0.14);
  --white: #ffffff;
  --whatsapp: #1fa855;
  --shadow-sm: 0 10px 30px rgba(61, 18, 30, 0.08);
  --shadow-md: 0 24px 70px rgba(61, 18, 30, 0.14);
  --shadow-lg: 0 34px 100px rgba(48, 9, 21, 0.24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink-900);
  background: var(--cream-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--wine-700);
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-900);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--wine-700);
  font-weight: 600;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--wine-900);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Announcement */
.announcement {
  position: relative;
  z-index: 70;
  color: rgba(255, 255, 255, 0.86);
  background: var(--wine-950);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement p {
  margin: 0;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: var(--gold-300);
}

.announcement svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 251, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.96);
  box-shadow: 0 10px 35px rgba(67, 18, 31, 0.07);
}

.nav-wrap {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(185, 132, 46, 0.4);
  border-radius: 50%;
  background: var(--cream-200);
  box-shadow: 0 6px 20px rgba(75, 16, 34, 0.09);
}

.brand__mark picture,
.brand__mark img {
  width: 100%;
  height: 100%;
}

.brand__mark img {
  object-fit: cover;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand__text strong {
  color: var(--wine-800);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__text small {
  color: var(--ink-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--wine-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button).is-active {
  color: var(--wine-700);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine-800);
  background: var(--cream-100);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 2.6px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(4.1px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-4.1px) rotate(-45deg);
}

/* Buttons */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(203, 157, 79, 0.42);
  outline-offset: 3px;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-700), var(--wine-900));
  box-shadow: 0 14px 34px rgba(103, 16, 38, 0.22);
}

.button--primary:hover {
  box-shadow: 0 18px 44px rgba(103, 16, 38, 0.3);
}

.button--small {
  min-height: 44px;
  padding: 12px 19px;
  font-size: 12px;
}

.button--text {
  min-height: 48px;
  padding-inline: 8px;
  color: var(--wine-700);
  border-radius: 0;
  border-bottom: 1px solid rgba(125, 23, 49, 0.38);
}

.button--text:hover {
  border-bottom-color: var(--wine-700);
}

.button--light {
  color: var(--wine-900);
  background: var(--cream-100);
  box-shadow: 0 14px 34px rgba(24, 3, 9, 0.2);
}

.button--light:hover {
  background: var(--white);
}

.button--whatsapp {
  width: 100%;
  min-height: 58px;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, #1f9f54, #127b3d);
  box-shadow: 0 15px 35px rgba(18, 123, 61, 0.22);
}

.button--whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

/* Common headings */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--wine-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 35px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold-500);
}

.eyebrow--light {
  color: var(--gold-300);
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading h2,
.about__content h2,
.experience__intro h2,
.booking__content h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-heading--split > p {
  max-width: 510px;
  margin-bottom: 7px;
  color: var(--ink-500);
  font-size: 15px;
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--ink-500);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 28px;
  background:
    radial-gradient(circle at 6% 10%, rgba(231, 195, 200, 0.48), transparent 27%),
    radial-gradient(circle at 88% 20%, rgba(229, 200, 135, 0.24), transparent 30%),
    linear-gradient(180deg, var(--cream-50), var(--cream-100));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: 76px;
}

.hero__content {
  padding: 35px 0 55px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(4.3rem, 7.7vw, 7.2rem);
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  left: 4px;
  height: 8px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(203, 157, 79, 0.3);
  transform: rotate(-1.5deg);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--ink-500);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 36px;
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 700;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__assurance i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(203, 157, 79, 0.14);
}

.hero__visual {
  display: flex;
  justify-content: center;
  padding: 20px 16px 50px;
}

.portrait-shell {
  position: relative;
  width: min(100%, 455px);
  height: 600px;
  padding: 12px;
  border-radius: 230px 230px 34px 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 222, 207, 0.95));
  box-shadow: var(--shadow-lg);
}

.portrait-shell::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 72%;
  height: 41%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(111, 16, 40, 0.1);
  filter: blur(2px);
  transform: rotate(-8deg);
}

.portrait-shell__line {
  position: absolute;
  inset: -15px;
  z-index: -1;
  border: 1px solid rgba(185, 132, 46, 0.56);
  border-radius: 245px 245px 44px 44px;
}

.portrait-shell picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  border-radius: 220px 220px 24px 24px;
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(0.9) contrast(1.03) brightness(1.01);
}

.founder-card {
  position: absolute;
  left: -53px;
  bottom: 43px;
  min-width: 220px;
  padding: 18px 21px 17px;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.founder-card__label {
  margin-bottom: 5px;
  color: var(--gold-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-card strong {
  color: var(--wine-800);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.founder-card small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
}

.logo-medallion {
  position: absolute;
  top: 80px;
  right: -31px;
  width: 94px;
  height: 94px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(185, 132, 46, 0.55);
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: var(--shadow-md);
  transform: rotate(7deg);
}

.logo-medallion picture,
.logo-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.logo-medallion img {
  object-fit: cover;
}

.hero__ornament {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(185, 132, 46, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero__ornament--one {
  width: 430px;
  height: 430px;
  left: -275px;
  bottom: -250px;
}

.hero__ornament--two {
  width: 220px;
  height: 220px;
  top: 92px;
  right: -140px;
}

.hero__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 24px 0 7px;
  border-top: 1px solid var(--line);
  color: var(--gold-700);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__footer p {
  margin: 0;
}

.hero__footer span {
  color: var(--rose-500);
  font-size: 10px;
}

/* Moving ribbon */
.service-ribbon {
  overflow: hidden;
  color: var(--cream-100);
  background: var(--wine-900);
  transform: rotate(-0.35deg) scale(1.01);
  transform-origin: center;
}

.service-ribbon__track {
  width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: ribbonMove 28s linear infinite;
}

.service-ribbon__track b {
  color: var(--gold-300);
  font-size: 10px;
}

@keyframes ribbonMove {
  to { transform: translateX(-50%); }
}

/* Services */
.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 9%, rgba(239, 203, 208, 0.35), transparent 22%),
    var(--cream-50);
}

.services::before {
  content: "NZ";
  position: absolute;
  top: 44px;
  right: 3vw;
  color: rgba(103, 16, 38, 0.035);
  font-family: var(--serif);
  font-size: clamp(10rem, 19vw, 19rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 31px 30px 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 12px 40px rgba(61, 18, 30, 0.045);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(203, 157, 79, 0.2);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(185, 132, 46, 0.42);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-card--featured {
  color: rgba(255, 255, 255, 0.76);
  border-color: transparent;
  background: linear-gradient(145deg, var(--wine-700), var(--wine-950));
  box-shadow: var(--shadow-md);
}

.service-card--featured::before {
  border-color: rgba(229, 200, 135, 0.28);
}

.service-card--featured:hover {
  border-color: rgba(229, 200, 135, 0.4);
  background: linear-gradient(145deg, #8c1b38, var(--wine-950));
}

.service-card__number {
  position: absolute;
  top: 27px;
  right: 29px;
  color: rgba(103, 16, 38, 0.22);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.28);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid rgba(185, 132, 46, 0.38);
  border-radius: 50%;
  color: var(--wine-700);
  background: var(--cream-100);
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card--featured .service-card__icon {
  color: var(--gold-300);
  border-color: rgba(229, 200, 135, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.service-card h3 {
  margin-bottom: 17px;
  font-size: 31px;
}

.service-card--featured h3 {
  color: var(--cream-100);
}

.service-card p {
  margin-bottom: 25px;
  color: var(--ink-500);
  font-size: 13.5px;
  line-height: 1.75;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--wine-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  border-bottom: 1px solid rgba(125, 23, 49, 0.28);
}

.service-card a span {
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translate(2px, -2px);
}

.service-card--featured a {
  color: var(--gold-300);
  border-bottom-color: rgba(229, 200, 135, 0.35);
}

/* Experience */
.experience {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 10%, rgba(203, 157, 79, 0.18), transparent 30%),
    linear-gradient(145deg, var(--wine-950), #5d0c23 62%, #3c0715);
}

.experience::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(229, 200, 135, 0.15);
  border-radius: 28px;
}

.experience__flower {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 380px;
  height: 380px;
  color: rgba(229, 200, 135, 0.08);
}

.experience__flower svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.experience__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.experience__intro h2 {
  max-width: 560px;
  margin-bottom: 25px;
  color: var(--cream-100);
}

.experience__intro h2 em {
  color: var(--gold-300);
}

.experience__intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.steps {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.step {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.step > span {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 8px;
  color: var(--cream-100);
  font-size: 29px;
}

.step p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

/* About */
.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 80%, rgba(229, 200, 135, 0.19), transparent 25%),
    var(--cream-100);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 105px;
}

.about__visual {
  position: relative;
  padding: 28px 42px 42px 0;
}

.logo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 132, 46, 0.34);
  border-radius: 250px 250px 34px 34px;
  background: var(--cream-200);
  box-shadow: var(--shadow-md);
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 11px;
  pointer-events: none;
  border: 1px solid rgba(203, 157, 79, 0.24);
  border-radius: 240px 240px 26px 26px;
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  right: -11px;
  bottom: 5px;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 6px solid var(--cream-100);
  border-radius: 50%;
  color: var(--cream-100);
  background: var(--wine-800);
  box-shadow: var(--shadow-md);
}

.about__badge span,
.about__badge small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about__badge strong {
  margin: 3px 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.about__content h2 {
  margin-bottom: 28px;
}

.about__content > p:not(.eyebrow) {
  margin-bottom: 16px;
  color: var(--ink-500);
  font-size: 15px;
}

.about__content > p strong {
  color: var(--wine-700);
}

.philosophy {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin: 31px 0 33px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.72);
}

.philosophy svg {
  width: 34px;
  height: 34px;
  fill: rgba(125, 23, 49, 0.25);
}

.philosophy p {
  margin: 0;
  color: var(--wine-800);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.about__features > div {
  padding: 21px 18px 0 0;
  border-right: 1px solid var(--line);
}

.about__features > div:not(:first-child) {
  padding-left: 18px;
}

.about__features > div:last-child {
  border-right: 0;
}

.about__features span {
  color: var(--gold-700);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.about__features p {
  margin: 3px 0 0;
  color: var(--ink-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

/* Promise */
.promise {
  background: var(--cream-50);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-card {
  min-height: 255px;
  padding: 37px 30px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}

.promise-card:last-child {
  border-right: 0;
}

.promise-card:hover {
  background: var(--cream-100);
  transform: translateY(-5px);
}

.promise-card__icon {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold-500);
  font-size: 19px;
}

.promise-card h3 {
  margin-bottom: 13px;
  font-size: 28px;
}

.promise-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 12.5px;
  line-height: 1.7;
}

/* Booking */
.booking {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 15%, rgba(203, 157, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #420817, var(--wine-800) 55%, #4b0718);
}

.booking::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -170px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(229, 200, 135, 0.15);
  border-radius: 50%;
}

.booking::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -300px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(239, 203, 208, 0.09);
  border-radius: 50%;
}

.booking__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: 85px;
}

.booking__content h2 {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--cream-100);
}

.booking__content h2 em {
  color: var(--gold-300);
}

.booking__content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.booking__contact-list {
  display: grid;
  gap: 12px;
}

.booking__contact-list > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
}

.contact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 200, 135, 0.28);
  border-radius: 50%;
  color: var(--gold-300);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking__contact-list a > span:last-child {
  display: grid;
  min-width: 0;
}

.booking__contact-list small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking__contact-list strong {
  overflow: hidden;
  color: var(--cream-100);
  font-size: 13px;
  text-overflow: ellipsis;
}

.booking-form {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  color: var(--ink-900);
  background: rgba(255, 253, 251, 0.97);
  box-shadow: 0 32px 80px rgba(30, 2, 10, 0.36);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--wine-800);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.form-head small {
  color: var(--ink-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-700);
  font-size: 11px;
  font-weight: 800;
}

.field label span {
  color: var(--wine-700);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(90, 45, 54, 0.16);
  border-radius: 12px;
  color: var(--ink-900);
  background: var(--cream-50);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 105px;
  padding: 12px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a39397;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(125, 23, 49, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(125, 23, 49, 0.07);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b72f45;
  box-shadow: 0 0 0 4px rgba(183, 47, 69, 0.07);
}

.field-error {
  min-height: 15px;
  display: block;
  margin-top: 4px;
  color: #a8293f;
  font-size: 10px;
}

.booking-form .button--whatsapp {
  margin-top: 24px;
}

.form-note {
  margin: 11px 0 0;
  color: var(--ink-500);
  font-size: 9.5px;
  text-align: center;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 203, 208, 0.32), transparent 23%),
    var(--cream-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 25px;
}

.map-card {
  min-height: 515px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: var(--radius-lg);
  background: var(--cream-300);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 495px;
  display: block;
  border: 0;
  filter: saturate(0.75) sepia(0.08) contrast(0.96);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 17px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.86);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(185, 132, 46, 0.43);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 132, 46, 0.32);
  border-radius: 50%;
  color: var(--wine-700);
  background: var(--cream-100);
}

.contact-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__icon svg .fill,
.footer__social svg .fill {
  fill: currentColor;
  stroke: none;
}

.contact-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.contact-card small {
  margin-bottom: 4px;
  color: var(--gold-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.6;
}

.contact-card > b {
  color: var(--wine-700);
  font-size: 19px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.contact-card:hover > b {
  transform: translate(2px, -2px);
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.62);
  background: var(--wine-950);
}

.footer__top {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 45px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.brand--footer .brand__text strong {
  color: var(--cream-100);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--gold-300);
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer__social a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--gold-300);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  color: var(--wine-950);
  background: var(--gold-300);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social a:last-child svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.footer__bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 600;
}

.footer__bottom p {
  margin: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px 12px 14px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 15px 35px rgba(12, 92, 43, 0.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(12, 92, 43, 0.34);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Reveal animations: content stays visible when JavaScript is unavailable. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .reveal--delay {
  transition-delay: 0.12s;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav {
    gap: 22px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
    gap: 45px;
  }

  .portrait-shell {
    height: 555px;
  }

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

  .experience__grid {
    gap: 65px;
  }

  .about__grid {
    gap: 70px;
  }

  .booking__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
    gap: 55px;
  }

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

  .promise-card:nth-child(2) {
    border-right: 0;
  }

  .promise-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 95px 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    max-height: calc(100svh - 110px);
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 251, 0.985);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .primary-nav > a:not(.button) {
    padding: 15px 11px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 13px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    max-width: 720px;
    padding-bottom: 10px;
    text-align: center;
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero__actions,
  .hero__assurance {
    justify-content: center;
  }

  .hero h1,
  .hero__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__visual {
    padding-bottom: 65px;
  }

  .portrait-shell {
    height: 610px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split > p {
    margin: 0;
  }

  .experience__grid,
  .about__grid,
  .booking__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .experience__grid {
    gap: 55px;
  }

  .experience__intro {
    max-width: 680px;
  }

  .about__grid {
    gap: 60px;
  }

  .about__visual {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .booking__grid {
    gap: 50px;
  }

  .booking__content {
    max-width: 700px;
  }

  .contact__grid {
    gap: 20px;
  }

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

  .footer__top {
    grid-template-columns: 1fr auto;
  }

  .footer__links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .announcement__inner {
    justify-content: center;
  }

  .announcement p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .announcement a {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand__mark {
    width: 45px;
    height: 45px;
  }

  .brand__text strong {
    font-size: 21px;
  }

  .brand__text small {
    font-size: 7.5px;
  }

  .primary-nav {
    max-height: calc(100svh - 96px);
  }

  .hero {
    padding-top: 50px;
  }

  .hero__content {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .button--text {
    justify-self: center;
    width: auto !important;
  }

  .hero__assurance {
    display: grid;
    justify-items: start;
    width: max-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero__visual {
    padding-right: 24px;
    padding-left: 24px;
  }

  .portrait-shell {
    width: min(100%, 390px);
    height: 525px;
    border-radius: 195px 195px 29px 29px;
  }

  .portrait-shell picture {
    border-radius: 185px 185px 20px 20px;
  }

  .portrait-shell__line {
    inset: -11px;
    border-radius: 205px 205px 37px 37px;
  }

  .founder-card {
    left: -20px;
    bottom: 25px;
    min-width: 188px;
    padding: 15px 17px;
  }

  .founder-card strong {
    font-size: 24px;
  }

  .logo-medallion {
    top: 65px;
    right: -24px;
    width: 79px;
    height: 79px;
  }

  .hero__footer {
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .service-ribbon__track {
    min-height: 52px;
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about__content h2,
  .experience__intro h2,
  .booking__content h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

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

  .service-card {
    min-height: 355px;
  }

  .experience {
    padding: 84px 0;
  }

  .experience::after {
    inset: 8px;
    border-radius: 20px;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .about__visual {
    padding: 12px 29px 33px 0;
  }

  .about__badge {
    right: -2px;
    width: 120px;
    height: 120px;
  }

  .about__badge strong {
    font-size: 23px;
  }

  .philosophy {
    grid-template-columns: 34px 1fr;
    padding: 19px;
  }

  .philosophy svg {
    width: 28px;
    height: 28px;
  }

  .philosophy p {
    font-size: 22px;
  }

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

  .about__features > div,
  .about__features > div:not(:first-child) {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about__features > div:last-child {
    border-bottom: 0;
  }

  .about__features p {
    margin: 0;
  }

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

  .promise-card,
  .promise-card:nth-child(2) {
    min-height: auto;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-card:last-child {
    border-bottom: 0;
  }

  .promise-card__icon {
    margin-bottom: 24px;
  }

  .booking {
    padding: 84px 0;
  }

  .booking-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-head {
    display: grid;
    gap: 6px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field--full {
    grid-column: auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 390px;
    border-width: 7px;
    border-radius: 25px;
  }

  .map-card iframe {
    min-height: 376px;
  }

  .contact-card {
    min-height: 106px;
    grid-template-columns: 48px minmax(0, 1fr) 14px;
    gap: 13px;
    padding: 17px;
  }

  .contact-card__icon {
    width: 47px;
    height: 47px;
  }

  .contact-card strong {
    font-size: 11px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__links {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 17px 24px;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand__text small {
    max-width: 140px;
    white-space: nowrap;
  }

  .portrait-shell {
    height: 475px;
  }

  .founder-card {
    left: -13px;
  }

  .logo-medallion {
    right: -17px;
  }

  .hero__footer {
    gap: 9px;
    font-size: 9.5px;
  }
}

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

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

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