:root {
  --black: #0b0908;
  --charcoal: #171310;
  --ivory: #fffaf0;
  --cream: #f5ecdc;
  --beige: #d6c2a4;
  --gold: #c9a45c;
  --gold-dark: #9b793b;
  --brown: #4a3527;
  --muted: #766a5d;
  --line: rgba(201, 164, 92, 0.24);
  --shadow: 0 24px 70px rgba(11, 9, 8, 0.22);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: 7.2rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.8rem;
}

h3 {
  font-size: 1.45rem;
}

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

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

.narrow {
  width: min(860px, calc(100% - 40px));
}

.section {
  padding: 112px 0;
}

section[id],
.trust-strip[id] {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.section-dark {
  background: var(--black);
  color: var(--ivory);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.28);
}

.btn-primary:hover {
  background: #dfbe72;
}

.btn-secondary,
.btn-outline {
  border-color: rgba(255, 250, 240, 0.48);
  color: var(--ivory);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.12);
}

.btn-dark {
  background: var(--black);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--brown);
}

.text-link {
  color: var(--black);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 48px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.82), rgba(11, 9, 8, 0.18));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(11, 9, 8, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.55);
  background: rgba(255, 250, 240, 0.08);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-logo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.brand-logo-wrap.has-fallback img {
  display: none;
}

.brand-logo-wrap.has-fallback .brand-logo-fallback {
  display: grid;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-text small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-book) {
  color: rgba(255, 250, 240, 0.84);
  transition: color 180ms ease;
}

.primary-nav a:not(.nav-book):hover {
  color: var(--gold);
}

.nav-book {
  padding: 12px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ivory);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding: calc(var(--header-height) + 50px) 0 72px;
  background-color: var(--black);
  background-image: linear-gradient(120deg, rgba(11, 9, 8, 0.94), rgba(11, 9, 8, 0.28)), var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 8, 0.82), rgba(11, 9, 8, 0.16)),
    linear-gradient(0deg, rgba(11, 9, 8, 0.72), transparent 45%);
  pointer-events: none;
}

.hero-content,
.bridal-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.2rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 30px;
  z-index: 1;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--charcoal);
  color: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 110px;
  padding: 28px 22px;
  border-right: 1px solid rgba(201, 164, 92, 0.16);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.trust-item strong {
  display: block;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 9, 8, 0.28), rgba(74, 53, 39, 0.62)),
    repeating-linear-gradient(45deg, rgba(255, 250, 240, 0.05) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, var(--black), var(--brown));
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-frame img.is-missing,
.service-card img.is-missing,
.gallery-item img.is-missing {
  opacity: 0;
}

.image-frame.has-missing-image::before,
.service-media.has-missing-image::before,
.gallery-item.has-missing-image::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 250, 240, 0.76);
  content: attr(data-fallback-label);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}

.image-frame.has-missing-image::before {
  content: "CocoKutz Salon";
}

.content-block p,
.section-heading p,
.contact-info p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.feature-list li::before {
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(74, 53, 39, 0.14);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(74, 53, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(74, 53, 39, 0.14);
}

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 164, 92, 0.22), transparent 32%),
    repeating-linear-gradient(45deg, rgba(255, 250, 240, 0.045) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, var(--black), var(--brown));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.045);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

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

.service-price {
  margin: auto 0 18px;
  color: var(--gold-dark);
  font-weight: 900;
}

.experience-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 164, 92, 0.18), transparent 32%),
    var(--black);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201, 164, 92, 0.2);
  border: 1px solid rgba(201, 164, 92, 0.2);
}

.experience-card {
  min-height: 240px;
  padding: 28px;
  background: var(--charcoal);
}

.experience-card span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
}

.experience-card h3 {
  margin-top: 22px;
  margin-bottom: 12px;
}

.experience-card p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.94rem;
}

.bridal-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background-color: var(--black);
  background-image: linear-gradient(120deg, rgba(11, 9, 8, 0.92), rgba(11, 9, 8, 0.34)), var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bridal-content {
  max-width: 700px;
}

.bridal-content p {
  color: rgba(255, 250, 240, 0.78);
}

.bridal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.bridal-list span {
  padding: 14px 16px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  background: rgba(255, 250, 240, 0.06);
  color: var(--ivory);
  font-weight: 800;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.gallery-tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(74, 53, 39, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-tab.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 16%, rgba(201, 164, 92, 0.2), transparent 32%),
    repeating-linear-gradient(45deg, rgba(255, 250, 240, 0.04) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, var(--black), var(--brown));
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 420ms ease, opacity 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(11, 9, 8, 0.76);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-section {
  padding-top: 40px;
}

.offer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--cream);
  border: 1px solid rgba(74, 53, 39, 0.12);
  box-shadow: var(--shadow);
}

.offer-panel p {
  max-width: 680px;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  border: 1px solid rgba(74, 53, 39, 0.12);
  border-radius: var(--radius);
  background: #fffdf8;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 18px 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(74, 53, 39, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(74, 53, 39, 0.18);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin-bottom: 22px;
}

.contact-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.contact-info p {
  color: rgba(255, 250, 240, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-details strong {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phone-list,
.footer-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.phone-list a,
.footer-phone-list a {
  color: inherit;
  border-bottom: 1px solid rgba(201, 164, 92, 0.42);
}

.footer-demo-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(201, 164, 92, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(201, 164, 92, 0.24);
  background: var(--ivory);
  color: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.enquiry-form h3 {
  margin-bottom: 2px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(74, 53, 39, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--black);
  padding: 12px 14px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.16);
}

.map-section {
  background: var(--black);
}

.map-wrap {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, var(--brown), var(--black));
}

.map-wrap iframe {
  display: none;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-wrap.has-embed iframe {
  display: block;
}

.map-wrap.has-embed .map-placeholder {
  display: none;
}

.map-placeholder {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 40px 20px;
  color: var(--ivory);
  text-align: center;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--black);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 250, 240, 0.68);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: 0.86rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 9, 8, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1040px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

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

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

@media (max-width: 1080px) {
  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 4rem;
  }

  .primary-nav {
    gap: 14px;
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    visibility: hidden;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 18px 20px 26px;
    border-bottom: 1px solid rgba(201, 164, 92, 0.24);
    background: rgba(11, 9, 8, 0.98);
    pointer-events: none;
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .primary-nav a:not(.nav-book) {
    border-bottom: 1px solid rgba(201, 164, 92, 0.12);
  }

  .nav-book {
    justify-content: center;
  }

  .split-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .offer-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 46px;
  }

  .demo-label {
    max-width: 100%;
    white-space: normal;
  }

  .button-row,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .reviews-grid,
  .experience-grid,
  .gallery-grid,
  .bridal-list {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 164, 92, 0.16);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .image-frame,
  .image-frame img {
    min-height: 330px;
  }

  .service-body,
  .review-card,
  .experience-card {
    padding: 22px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 240px;
  }

  .gallery-item img {
    min-height: 240px;
  }

  .enquiry-form {
    padding: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .brand-text span {
    font-size: 1.02rem;
  }

  .brand-logo-wrap {
    width: 42px;
    height: 42px;
  }

  .container,
  .narrow {
    width: min(100% - 24px, 1160px);
  }

  .hero-copy,
  .content-block p,
  .section-heading p,
  .contact-info p {
    font-size: 0.96rem;
  }

  .btn {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.8rem;
  }

  .phone-list {
    display: grid;
  }
}

@media (max-height: 720px) and (min-width: 681px) {
  h1 {
    font-size: 5.2rem;
  }

  .section {
    padding: 82px 0;
  }

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

  .hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 34px;
  }

  .hero-copy {
    margin-bottom: 22px;
  }
}

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

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