:root {
  --ink: #1c241f;
  --green: #17392f;
  --green-2: #224d40;
  --gold: #c39a61;
  --gold-light: #ddc49e;
  --cream: #f6f0e7;
  --paper: #fcfaf6;
  --blush: #e8d7cf;
  --line: rgba(28, 36, 31, 0.16);
  --white: #fffdf9;
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--green);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--green);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.announcement {
  position: relative;
  z-index: 51;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  color: #f8f1e8;
  background: var(--green);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
  opacity: 0.78;
}

.announcement a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 600;
}

.announcement svg {
  width: 13px;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 36px;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  height: 72px;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 35px rgba(35, 43, 37, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.76;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-cta svg {
  width: 15px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  height: calc(100svh - 36px);
  overflow: hidden;
  color: white;
  background: #201d18;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/bushra-salon-hero.png") center / cover no-repeat;
  animation: heroReveal 1.5s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 16, 13, 0.86) 0%, rgba(20, 20, 16, 0.57) 37%, rgba(20, 20, 16, 0.04) 73%),
    linear-gradient(0deg, rgba(8, 13, 10, 0.38) 0%, transparent 38%);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 78vw);
  margin-left: max(7vw, calc((100vw - 1400px) / 2));
  padding-top: clamp(230px, 29vh, 320px);
  animation: contentIn 1s 0.25s ease both;
}

@keyframes contentIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #716b62;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(62px, 7.2vw, 108px);
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-intro {
  max-width: 500px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 27px;
  border: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.button svg {
  width: 16px;
}

.button-gold {
  color: #17231d;
  background: var(--gold);
}

.button-gold:hover {
  background: #d3af7b;
}

.button-dark {
  color: white;
  background: var(--green);
}

.button-dark:hover {
  background: var(--green-2);
}

.button-cream {
  color: var(--green);
  background: var(--cream);
}

.button-cream:hover {
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(25, 38, 32, 0.32);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link svg {
  width: 14px;
}

.light-link {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 5vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transform: translateX(50%) rotate(90deg);
  transform-origin: center;
}

.hero-note span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 17px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.signature-strip {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 55px);
  padding: 18px 40px;
  color: #4d4f49;
  background: var(--cream);
  border-bottom: 1px solid rgba(106, 91, 68, 0.12);
  font-family: var(--serif);
  font-size: 18px;
}

.signature-strip p {
  margin: 0;
}

.signature-strip span {
  color: var(--gold);
  font-size: 11px;
}

.section {
  padding: 140px max(5vw, calc((100vw - 1400px) / 2));
}

.story {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.story-visual {
  position: relative;
  padding: 0 0 52px 38px;
}

.story-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46px;
  right: 46px;
  bottom: 0;
  left: 0;
  background: var(--blush);
}

.story-frame {
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 23% center;
  transition: transform 1s ease;
}

.story-frame:hover img {
  transform: scale(1.025);
}

.story-seal {
  position: absolute;
  right: -45px;
  bottom: 8px;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--green);
  border: 5px solid var(--paper);
  border-radius: 50%;
}

.story-seal span {
  position: absolute;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-46px);
}

.story-seal strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}

h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  color: var(--green);
}

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

.story-copy .lead,
.academy-body .lead {
  margin: 34px 0 22px;
  color: #313c36;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.5;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  margin: 0;
  color: #74746f;
  font-size: 14px;
  line-height: 1.85;
}

.story-signoff {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 34px 0 30px;
}

.script-signature {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 39px;
  font-style: italic;
  transform: rotate(-8deg);
}

.story-signoff > div:last-child {
  display: grid;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.story-signoff strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-signoff small {
  margin-top: 4px;
  color: #85837c;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.services {
  color: white;
  background: var(--green);
}

.section-heading {
  width: var(--page);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

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

.services h2,
.academy h2 {
  color: var(--cream);
}

.section-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.9;
}

.service-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 34px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.35s ease, transform 0.35s ease;
}

.service-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-7px);
}

.service-featured {
  background: #bd9160;
}

.service-featured:hover {
  background: #c79c6b;
}

.card-number {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-top: 50px;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.service-featured .service-icon {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
}

.service-icon svg {
  width: 26px;
  stroke-width: 1.2;
}

.service-content {
  margin-top: auto;
}

.service-content > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.service-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}

.service-content > span {
  display: block;
  min-height: 66px;
  margin: 17px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.75;
}

.service-featured .service-content > span {
  color: rgba(255, 255, 255, 0.75);
}

.service-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 4px;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.service-book svg {
  width: 13px;
}

.service-footnote {
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  text-align: center;
}

.service-footnote a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-light);
}

.service-footnote svg {
  width: 13px;
}

.bridal-banner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.bridal-image,
.bridal-overlay {
  position: absolute;
  inset: 0;
}

.bridal-image {
  background: url("assets/bushra-salon-hero.png") 68% 35% / cover no-repeat;
}

.bridal-overlay {
  background: linear-gradient(90deg, rgba(16, 17, 14, 0.86) 0%, rgba(18, 18, 14, 0.55) 43%, rgba(18, 18, 14, 0.08) 72%);
}

.bridal-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 82vw);
  margin-left: max(8vw, calc((100vw - 1240px) / 2));
}

.bridal-copy h2 {
  color: white;
  font-size: clamp(60px, 7vw, 95px);
}

.bridal-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0 33px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.85;
}

.bridal-words {
  position: absolute;
  z-index: 2;
  right: -210px;
  bottom: 76px;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 150px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.bridal-copy .service-book {
  min-height: 54px;
  padding: 0 27px;
  color: var(--green);
  border: 0;
}

.academy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(80px, 11vw, 180px);
  overflow: hidden;
  color: white;
  background: #102d25;
}

.academy-title,
.academy-body {
  position: relative;
  z-index: 2;
}

.academy-body .lead {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.academy-list {
  margin: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.academy-list > div {
  min-height: 56px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.academy-list span {
  color: var(--gold);
  font-size: 9px;
}

.academy-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
}

.academy-list svg {
  width: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.academy-monogram {
  position: absolute;
  right: -40px;
  bottom: -210px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 650px;
  line-height: 1;
}

.experience {
  width: var(--page);
  margin: auto;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

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

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

.experience-grid article {
  position: relative;
  min-height: 330px;
  padding: 44px 42px;
  border-right: 1px solid var(--line);
}

.experience-grid article:first-child {
  border-left: 1px solid var(--line);
}

.experience-grid article > span {
  position: absolute;
  top: 23px;
  right: 23px;
  color: #aaa39a;
  font-size: 9px;
}

.experience-grid article > svg {
  width: 39px;
  height: 39px;
  color: var(--gold);
  stroke-width: 1.1;
}

.experience-grid h3 {
  margin: 70px 0 14px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.experience-grid p {
  margin: 0;
  color: #73736e;
  font-size: 13px;
  line-height: 1.8;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1fr);
  gap: clamp(70px, 10vw, 150px);
  background: var(--blush);
}

.booking-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 38px;
  color: #66645f;
  font-size: 14px;
  line-height: 1.85;
}

.direct-contact {
  display: flex;
  gap: 30px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.direct-contact svg {
  width: 20px;
  color: var(--green);
}

.direct-contact span {
  display: grid;
}

.direct-contact small {
  color: #8a8178;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
  padding: 50px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(76, 57, 46, 0.1);
}

.field {
  display: grid;
  gap: 9px;
}

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

.field label {
  color: #625f59;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfc9c0;
  border-radius: 0;
  outline: 0;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--green);
}

.field input::placeholder {
  color: #aaa49b;
}

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

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -8px 0 0;
  color: #8b8780;
  font-size: 9px;
  text-align: center;
}

.form-note svg {
  width: 12px;
}

.visit {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--cream);
}

.map-wrap {
  min-height: 620px;
  background: #ded9cf;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 690px;
  display: block;
  border: 0;
  filter: grayscale(0.8) sepia(0.15) contrast(0.9);
}

.visit-card {
  align-self: center;
  padding: 70px clamp(55px, 8vw, 120px);
}

.visit-details {
  margin: 42px 0 38px;
  border-top: 1px solid var(--line);
}

.visit-details > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details svg {
  width: 18px;
  margin-top: 3px;
  color: var(--gold);
  stroke-width: 1.4;
}

.visit-details p {
  margin: 0;
  color: #555851;
  font-size: 13px;
  line-height: 1.65;
}

.visit-details small {
  display: block;
  margin-bottom: 3px;
  color: #959188;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer {
  padding: 90px max(5vw, calc((100vw - 1400px) / 2)) 25px;
  color: white;
  background: #0c211b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 80px;
  padding-bottom: 75px;
}

.brand-light {
  color: var(--cream);
}

.footer-brand > p {
  max-width: 300px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main small {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-nav a:hover {
  color: white;
}

.footer-cta h3 {
  margin: 9px 0 17px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cta svg {
  width: 14px;
}

.footer-bottom {
  min-height: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom svg {
  width: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: white;
  background: #1f8f59;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(22, 72, 45, 0.28);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(22, 72, 45, 0.34);
}

.whatsapp-float svg {
  width: 18px;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  padding: 12px 20px;
  color: white;
  background: var(--ink);
  border-radius: 3px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1050px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .story {
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
  }

  .story-seal {
    right: -30px;
  }

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

  .service-card:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .academy {
    gap: 70px;
  }

  .booking {
    grid-template-columns: 0.75fr 1fr;
    gap: 60px;
  }

  .booking-form {
    padding: 38px;
  }

  .direct-contact {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .announcement {
    justify-content: space-between;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 78px;
    padding: 0 22px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid !important;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: inherit;
    background: rgba(14, 42, 34, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 49;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: white;
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    font-family: var(--serif);
    font-size: 32px;
  }

  .site-header.menu-active {
    position: fixed;
    top: 0;
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .hero {
    height: 820px;
    min-height: 0;
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 15, 13, 0.8), rgba(15, 15, 12, 0.2)), linear-gradient(0deg, rgba(8, 13, 10, 0.65), transparent 60%);
  }

  .hero-content {
    margin-left: 7vw;
    padding-top: 245px;
  }

  .hero-note {
    display: none;
  }

  .signature-strip {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .story-visual {
    max-width: 680px;
  }

  .story-seal {
    right: -4px;
  }

  .story-copy {
    max-width: 620px;
  }

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

  .section-heading > p {
    max-width: 540px;
  }

  .academy {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .academy-body {
    max-width: 600px;
  }

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

  .experience-grid article,
  .experience-grid article:first-child {
    min-height: 255px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .experience-grid article:last-child {
    border-bottom: 0;
  }

  .experience-grid h3 {
    margin-top: 40px;
  }

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

  .booking-intro {
    max-width: 650px;
  }

  .direct-contact {
    flex-direction: row;
    gap: 30px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 440px;
  }

  .visit-card {
    padding: 90px max(28px, 8vw);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --page: calc(100vw - 34px);
  }

  .announcement {
    height: 32px;
    justify-content: center;
    font-size: 8px;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    top: 32px;
  }

  .site-header.scrolled,
  .site-header.menu-active {
    top: 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    height: 740px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 15, 13, 0.78), rgba(15, 15, 12, 0.08)), linear-gradient(0deg, rgba(8, 13, 10, 0.75), transparent 63%);
  }

  .hero-content {
    width: calc(100% - 34px);
    margin-left: 17px;
    padding-top: 230px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(48px, 13.5vw, 60px);
    text-wrap: wrap;
  }

  .hero h1 em {
    display: block;
    max-width: 100%;
    text-wrap: wrap;
  }

  .hero h1 em span {
    display: block;
  }

  h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-intro {
    max-width: 88%;
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .signature-strip {
    min-height: 62px;
    padding-left: 20px;
    font-size: 15px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .story-visual {
    padding: 0 0 30px 18px;
  }

  .story-visual::before {
    top: 25px;
    right: 24px;
  }

  .story-frame {
    aspect-ratio: 0.82 / 1;
  }

  .story-frame img {
    object-position: 27% center;
  }

  .story-seal {
    width: 100px;
    height: 100px;
    right: -5px;
    bottom: -7px;
  }

  .story-seal span {
    transform: translateY(-34px);
    font-size: 5px;
  }

  .story-seal strong {
    font-size: 29px;
  }

  .story-copy .lead,
  .academy-body .lead {
    font-size: 20px;
  }

  .story-signoff {
    align-items: flex-start;
  }

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

  .service-card,
  .service-card:first-child {
    min-height: 390px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-icon {
    margin-top: 30px;
  }

  .service-content > span {
    min-height: 0;
  }

  .bridal-banner {
    min-height: 650px;
  }

  .bridal-image {
    background-position: 68% center;
  }

  .bridal-overlay {
    background: linear-gradient(90deg, rgba(16, 17, 14, 0.83), rgba(18, 18, 14, 0.18)), linear-gradient(0deg, rgba(15, 17, 13, 0.7), transparent 55%);
  }

  .bridal-copy {
    margin: 0 22px;
  }

  .bridal-words {
    display: none;
  }

  .academy-monogram {
    font-size: 400px;
  }

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

  .experience-grid article {
    min-height: 280px;
    padding: 34px 30px;
  }

  .booking {
    gap: 50px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .direct-contact {
    flex-direction: column;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 30px 23px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .visit-card {
    padding: 75px 24px;
  }

  .site-footer {
    padding: 70px 25px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-cta {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 49px;
    height: 49px;
    min-height: 49px;
    justify-content: center;
    padding: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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