@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #2e2423;
  --muted: #756765;
  --paper: #fffaf8;
  --white: #ffffff;
  --blush: #f7e9e5;
  --rose: #b77a72;
  --rose-dark: #8f5e58;
  --line: #ead9d5;
  --shadow: 0 18px 50px rgba(77, 48, 45, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 760px;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(4.2rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--white);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(234, 217, 213, 0.8);
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

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

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

.primary-nav a {
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--rose-dark);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover {
  color: var(--white) !important;
  background: var(--rose-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(183, 122, 114, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #fffaf8 0%, #f8ebe7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(183, 122, 114, 0.22);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 40px;
}

.hero-text {
  max-width: 520px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  background: transparent;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Larger professional hero image */
.hero-art {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.intro {
  background: var(--white);
}

.intro p:last-child {
  font-size: 1.12rem;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-heading > div {
  max-width: 720px;
}

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

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

.service-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--rose);
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
}

.appointment-section {
  background: var(--ink);
  color: var(--white);
}

.appointment-section p {
  color: #d8cac7;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.text-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.hours-card {
  padding: 18px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hours-card span {
  color: #d8cac7;
}

.contact-section {
  background: var(--blush);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.contact-card {
    margin: 0;
    padding: 30px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    font-style: normal;
    color: var(--ink);
}

.contact-card div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
    border-bottom: none;
}

.contact-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--rose-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-card a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--rose-dark);
}
.site-footer {
  padding: 34px 0 88px;
  background: #211a19;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
  color: #bcaeab;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .appointment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: 100%;
    max-width: 620px;
    min-height: 440px;
  }

  .hero-art img {
    height: 440px;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading > p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

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

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 8px 4px;
  }

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

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-art {
    min-height: 360px;
    border-radius: 22px;
  }

  .hero-art img {
    height: 360px;
    border-radius: 22px;
  }

  .hero-details {
    flex-direction: column;
    gap: 4px;
  }

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

  .service-card {
    min-height: 0;
  }

  .appointment-grid,
  .contact-grid {
    gap: 38px;
  }

  .hours-card div {
    flex-direction: column;
    gap: 3px;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }

  .mobile-actions a {
    padding: 12px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    background: var(--rose-dark);
  }
}

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

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

/* Pujan Beauty Studio logo */
.brand .brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 720px) {
  .brand .brand-logo {
    width: 64px;
    height: 64px;
  }
}
/* Premium full-width hero layout */
.hero {
  min-height: 650px;
  padding: 55px 0;
}

.hero .container {
  width: min(1480px, calc(100% - 48px));
}

.hero-grid {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
}

.hero-art {
  width: 100%;
  min-height: 585px;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 22px 60px rgba(77, 48, 45, 0.16);
}

.hero-art img {
  width: 100%;
  height: 585px;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 30px;
}

/* Remove the large empty decorative circle */
.hero::after {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero .container {
    width: min(100% - 32px, 760px);
  }

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

  .hero-art {
    max-width: none;
    min-height: 440px;
  }

  .hero-art img {
    height: 440px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 45px 0;
  }

  .hero-art {
    min-height: 360px;
    border-radius: 22px;
  }

  .hero-art img {
    height: 360px;
    border-radius: 22px;
  }
}
/* Integrated full-background hero */
.hero {
  min-height: 720px;
  padding: 75px 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 248, 0.96) 0%,
      rgba(255, 250, 248, 0.88) 27%,
      rgba(255, 250, 248, 0.35) 48%,
      rgba(255, 250, 248, 0) 68%
    ),
    url("../images/hero.jpg") center center / cover no-repeat;
}

.hero .container {
  width: min(1240px, calc(100% - 48px));
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  max-width: 520px;
}

/* Hide the separate image card because the image is now the background */
.hero-art {
  display: none;
}

.hero::after {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
    background-position: 62% center;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 55px 0 420px;
    background-position: 68% bottom;
    background-size: auto 420px;
    background-color: #fffaf8;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }
}
/* Softer blend between text and bridal image */
.hero {
  background:
    linear-gradient(
      90deg,
      #fff8f3 0%,
      rgba(255, 248, 243, 0.98) 28%,
      rgba(255, 248, 243, 0.82) 40%,
      rgba(255, 248, 243, 0.34) 56%,
      rgba(255, 248, 243, 0) 72%
    ),
    url("../images/hero.jpg") 62% center / cover no-repeat;
}
/* Reveal makeup brushes while keeping hero text readable */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 243, 0.28) 0%,
      rgba(255, 248, 243, 0.48) 10%,
      rgba(255, 248, 243, 0.97) 20%,
      rgba(255, 248, 243, 0.94) 38%,
      rgba(255, 248, 243, 0.62) 52%,
      rgba(255, 248, 243, 0.12) 68%,
      rgba(255, 248, 243, 0) 78%
    ),
    url("../images/hero.jpg") 58% center / cover no-repeat;
}
/* Refine hero image balance */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 243, 0.64) 0%,
      rgba(255, 248, 243, 0.82) 13%,
      rgba(255, 248, 243, 0.96) 23%,
      rgba(255, 248, 243, 0.88) 36%,
      rgba(255, 248, 243, 0.45) 49%,
      rgba(255, 248, 243, 0.08) 63%,
      rgba(255, 248, 243, 0) 74%
    ),
    url("../images/hero.jpg") 58% center / cover no-repeat;
}
/* Refine hero call-to-action buttons */
.hero .button {
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.hero .button-primary {
  box-shadow: 0 10px 24px rgba(46, 36, 35, 0.16);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}
/* Smooth transition from hero to welcome section */
.intro {
  position: relative;
  padding-top: 120px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 243, 0.72) 0%,
      #ffffff 130px
    );
}

.intro::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(220px, 40%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(183, 122, 114, 0.55),
    transparent
  );
}
/* Improved mobile hero experience */
@media (max-width: 720px) {
  .hero {
    position: relative;
    min-height: auto;
    padding: 42px 0 350px;
    overflow: hidden;
    background: #fff8f3;
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 330px;
    background:
      linear-gradient(
        180deg,
        #fff8f3 0%,
        rgba(255, 248, 243, 0.25) 18%,
        rgba(255, 248, 243, 0) 40%
      ),
      url("../images/hero.jpg") 72% center / cover no-repeat;
  }

  .hero .container {
    position: relative;
    z-index: 1;
    width: min(100% - 30px, 620px);
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.25rem, 17vw, 4.6rem);
    line-height: 0.96;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
  }

  .hero .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-details {
    gap: 5px;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-bottom: 315px;
  }

  .hero::before {
    height: 295px;
    background-position: 74% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4rem);
  }
}
/* Testimonials and customer review section */
.testimonials-section {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(183, 122, 114, 0.12),
      transparent 34%
    ),
    var(--white);
}

.testimonials-heading {
  align-items: end;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.testimonial-intro {
  position: sticky;
  top: 130px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.testimonial-icon {
  height: 58px;
  margin-bottom: 16px;
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-intro h3 {
  font-size: 2rem;
}

.review-note {
  padding-left: 14px;
  border-left: 3px solid var(--rose);
  font-size: 0.92rem;
}

.testimonial-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(183, 122, 114, 0.12);
}

.permission-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.permission-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--rose-dark);
}

.submit-review {
  width: 100%;
  cursor: pointer;
}

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

@media (max-width: 900px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .testimonials-layout {
    gap: 24px;
  }

  .testimonial-intro,
  .testimonial-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonial-intro h3 {
    font-size: 1.7rem;
  }
}
/* Compact services layout */
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 155px;
  padding: 20px 22px;
  border-radius: 18px;
}

.service-card span {
  margin-bottom: 14px;
  font-size: 0.78rem;
}

.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}
/* Fix Contact section text visibility */
.contact-section {
  color: var(--ink);
}

.contact-section h2,
.contact-section h3,
.contact-section strong {
  color: var(--ink);
}

.contact-section p {
  color: var(--muted);
}

.contact-section .eyebrow {
  color: var(--rose-dark);
}

.contact-card {
  color: var(--ink);
}

.contact-card span {
  color: var(--rose-dark);
}

.contact-card a {
  color: var(--ink);
  opacity: 1;
}

.contact-card a:hover {
  color: var(--rose-dark);
}

.contact-actions {
  margin-bottom: 0;
}
.contact-card,
.contact-card * {
    color: #2e2423 !important;
}

.contact-card span {
    color: var(--rose-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-card a {
    text-decoration: none;
    color: #2e2423 !important;
}

.contact-card a:hover {
    color: var(--rose-dark) !important;
}
/* Force contact information to be visible */
.contact-card,
.contact-card * {
    color: var(--ink) !important;
}

.contact-card span {
    color: var(--rose-dark) !important;
}
/* Dark premium header */
.site-header {
  border-bottom: 0;
  background: rgba(72, 45, 42, 0.97);
  box-shadow: 0 6px 22px rgba(46, 36, 35, 0.14);
  backdrop-filter: blur(14px);
}

.brand strong {
  color: #ffffff;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
}

.primary-nav a {
  color: #ffffff;
}

.primary-nav a:hover {
  color: #f3c9bf;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #ffffff;
  color: var(--ink) !important;
}

.nav-cta:hover {
  background: #f3c9bf;
  color: var(--ink) !important;
}

/* Keep the logo clear against the dark header */
.brand .brand-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.42);
}
/* Google Reviews section */
.testimonials-section {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(183, 122, 114, 0.12),
      transparent 35%
    ),
    var(--white);
}

.reviews-intro {
  max-width: 720px;
  margin: 0 auto 36px;
}

.google-review-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.google-stars {
  margin-bottom: 14px;
  color: #d49a35;
  font-size: 1.65rem;
  letter-spacing: 0.12em;
}

.google-review-box h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.google-review-box p {
  max-width: 560px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
}

@media (max-width: 720px) {
  .google-review-box {
    padding: 28px 22px;
  }

  .google-review-box .button {
    width: 100%;
  }
}
/* Booking form */
.booking-section {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(183, 122, 114, 0.13),
      transparent 34%
    ),
    var(--paper);
}

.booking-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.booking-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form .form-field {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}

.booking-form textarea {
  min-height: 150px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(183, 122, 114, 0.12);
}

.booking-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400 !important;
  line-height: 1.6;
}

.booking-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--rose-dark);
}

.booking-submit {
  width: 100%;
  cursor: pointer;
}

.booking-status {
  min-height: 24px;
  margin: 16px 0 0;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

@media (max-width: 720px) {
  .booking-form {
    padding: 26px 20px;
  }

  .booking-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
