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

    :root {
      --teal:       #2A8FA3;
      --teal-light: #5BBDD4;
      --teal-pale:  #D6EFF5;
      --gold:       #C9963A;
      --gold-light: #E8BC6A;
      --sand:       #FAF6F0;
      --white:      #FFFFFF;
      --ink:        #1C3A42;
      --mist:       #8BBFC9;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--sand);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 48px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(42,143,163,0.15);
    }

    .nav-logo img {
      height: 60px;
      width: auto;
      display: block;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 36px;
      align-items: center;
    }

    nav ul a {
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      transition: color 0.2s;
    }

    nav ul a:hover { color: var(--teal); }

    .nav-cta {
      background: var(--gold);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 30px;
      transition: background 0.2s !important;
    }

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

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 100px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(175deg, #EAF6FA 0%, var(--sand) 55%);
    }

    .hero-logo {
      width: min(320px, 70vw);
      height: auto;              /* prevents the HTML height attr from squishing it */
      margin-bottom: 40px;
      filter: drop-shadow(0 8px 24px rgba(42,143,163,0.18));
    }

    .hero-waves {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 180px;
      overflow: hidden;
    }

    .hero-waves svg { width: 200%; animation: drift 14s linear infinite; }

    @keyframes drift {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .hero-badge {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1.5px solid var(--gold-light);
      border-radius: 30px;
      padding: 6px 18px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900;
      color: var(--teal);
      line-height: 1.08;
      max-width: 780px;
    }

    .hero h1 em { font-style: normal; color: var(--gold); }

    .hero-sub {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      color: var(--mist);
      margin-top: 18px;
    }

    .hero-desc {
      max-width: 520px;
      margin: 22px auto 0;
      font-size: 1.05rem;
      line-height: 1.75;
      color: #4A6B73;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--teal);
      color: var(--white);
      padding: 16px 38px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 6px 24px rgba(42,143,163,0.28);
    }

    .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); }

    .btn-secondary {
      background: transparent;
      color: var(--teal);
      padding: 15px 36px;
      border-radius: 50px;
      border: 2px solid var(--teal);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-secondary:hover { background: var(--teal); color: var(--white); }

    .hero-stars {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-top: 48px;
      color: var(--gold);
      font-size: 1.2rem;
    }

    .hero-stars span { font-size: 0.8rem; color: #4A6B73; margin-left: 8px; font-weight: 300; }

    /* SECTIONS */
    .section-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    section { padding: 96px 24px; }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--teal);
      font-weight: 900;
    }

    .section-header p {
      margin-top: 14px;
      font-size: 1rem;
      color: #4A6B73;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.75;
      font-weight: 300;
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      border: 1.5px solid rgba(42,143,163,0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(42,143,163,0.12);
    }


    .service-card-number {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--teal-pale);
      line-height: 1;
      margin-bottom: 8px;
      display: block;
      transition: color 0.25s;
    }
    .service-card:hover .service-card-number {
      color: var(--gold-light);
    }


    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .service-card p { font-size: 0.92rem; color: #4A6B73; line-height: 1.7; font-weight: 300; }

    /* GALLERY */
    .gallery-section {
      background: var(--teal);
      padding: 80px 24px;
      text-align: center;
    }

    .gallery-section .section-label { color: var(--gold-light); }

    .gallery-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .gallery-intro {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto 52px;
      line-height: 1.75;
      font-style: italic;
    }

    .gallery-text-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1100px;
      margin: 0 auto 52px;
    }

    .gallery-text-item {
      padding: 40px 36px;
      border: 1px solid rgba(255,255,255,0.1);
      text-align: left;
      transition: background 0.2s;
      position: relative;
    }

    .gallery-text-item:hover {
      background: rgba(255,255,255,0.07);
    }

    .gallery-text-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: rgba(255,255,255,0.1);
      display: block;
      line-height: 1;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

    .gallery-text-item:hover .gallery-text-num {
      color: var(--gold-light);
    }

    .gallery-text-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .gallery-text-item p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      font-weight: 300;
    }

    /* PROCESS */
    .process-section { background: var(--white); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .process-step { text-align: center; padding: 32px 24px; }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--teal-pale);
      border: 2.5px solid var(--teal-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.25rem;
      color: var(--teal);
    }

    .process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--teal); margin-bottom: 10px; }
    .process-step p { font-size: 0.88rem; color: #4A6B73; line-height: 1.7; font-weight: 300; }

    /* PRICING */
    .pricing-section { background: var(--sand); }

    .pricing-note {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
      background: var(--white);
      border: 1.5px solid rgba(42,143,163,0.15);
      border-radius: 16px;
      padding: 20px 28px;
      font-size: 0.92rem;
      color: #4A6B73;
      line-height: 1.7;
      font-weight: 300;
    }

    .pricing-note strong { color: var(--teal); font-weight: 700; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      max-width: 1000px;
      margin: 0 auto 64px;
    }

    .price-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      border: 1.5px solid rgba(42,143,163,0.1);
      position: relative;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(42,143,163,0.12);
    }

    .price-card.featured {
      border-color: var(--gold-light);
      box-shadow: 0 12px 34px rgba(201,150,58,0.16);
    }

    .price-card-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .price-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 6px;
    }

    .price-card .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .price-card .price-amount span {
      font-family: 'Lato', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      color: #4A6B73;
    }

    .price-card p.price-desc {
      font-size: 0.9rem;
      color: #4A6B73;
      line-height: 1.7;
      font-weight: 300;
    }

    .pricing-subhead {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--teal);
      max-width: 900px;
      margin: 0 auto 28px;
    }

    .occasions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto 64px;
    }

    .occasion-chip {
      background: var(--white);
      border: 1.5px solid rgba(42,143,163,0.12);
      border-radius: 14px;
      padding: 22px 20px;
      text-align: center;
    }

    .occasion-chip h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--teal);
      margin-bottom: 6px;
    }

    .occasion-chip span {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .pricing-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .pricing-list {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 34px;
      border: 1.5px solid rgba(42,143,163,0.1);
    }

    .pricing-list h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--teal);
      margin-bottom: 20px;
      text-align: center;
    }

    .pricing-list ul { list-style: none; }

    .pricing-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(42,143,163,0.18);
    }

    .pricing-list li:last-child { border-bottom: none; }

    .pricing-list .li-label { font-size: 0.92rem; color: var(--ink); font-weight: 700; }
    .pricing-list .li-sub { display: block; font-size: 0.8rem; color: #4A6B73; font-weight: 300; margin-top: 2px; }
    .pricing-list .li-price { font-size: 0.95rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

    .pricing-disclaimer {
      max-width: 700px;
      margin: 56px auto 0;
      text-align: center;
      font-size: 0.85rem;
      font-style: italic;
      color: #4A6B73;
      line-height: 1.7;
      font-weight: 300;
    }

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

    /* GALLERY PHOTO CARD */
    .gallery-photo-item {
      grid-column: span 1;
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .gallery-photo-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      object-position: center 45%;
      display: block;
      filter: saturate(1.05);
    }

    .gallery-photo-item .gallery-photo-caption {
      padding: 24px 26px 28px;
    }

    .gallery-photo-item .gallery-photo-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold-light);
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
      background: var(--sand);
      padding: 96px 24px;
    }

    .reviews-placeholder {
      max-width: 1000px;
      margin: 0 auto;
    }

    .reviews-placeholder-inner {
      text-align: center;
      margin-bottom: 52px;
    }

    .reviews-coming-soon {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .reviews-subtext {
      font-size: 0.95rem;
      color: #4A6B73;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .btn-review-cta {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      padding: 14px 34px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 18px rgba(201,150,58,0.25);
    }

    .btn-review-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-leave-review {
      display: inline-block;
      background: transparent;
      color: var(--teal);
      padding: 13px 32px;
      border-radius: 50px;
      border: 2px solid var(--teal);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-leave-review:hover { background: var(--teal); color: var(--white); }

    .review-empty-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-empty-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 28px;
      border: 1.5px dashed rgba(42,143,163,0.2);
      opacity: 0.6;
    }

    .review-empty-stars {
      display: flex;
      gap: 5px;
      margin-bottom: 20px;
    }

    .star-outline {
      font-size: 1.1rem;
      color: var(--teal-pale);
    }

    .review-empty-lines {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .review-line {
      height: 10px;
      background: var(--teal-pale);
      border-radius: 6px;
    }

    .review-line.long { width: 100%; }
    .review-line.medium { width: 75%; }
    .review-line.short { width: 50%; }

    .review-empty-author {
      height: 10px;
      width: 40%;
      background: var(--teal-pale);
      border-radius: 6px;
      opacity: 0.5;
    }

    @media (max-width: 768px) {
      .review-empty-cards { grid-template-columns: 1fr; }
    }

    /* BRAND BANNER */
    .brand-banner {
      background: var(--white);
      padding: 88px 24px;
    }

    .brand-banner-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.85fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .brand-banner-photo {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(28,58,66,0.18);
      transform: rotate(-2deg);
      transition: transform 0.3s ease;
    }

    .brand-banner-photo:hover { transform: rotate(0deg); }

    .brand-banner-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .brand-banner-text .section-label { text-align: left; }

    .brand-banner-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      color: var(--teal);
      font-weight: 900;
      margin: 10px 0 18px;
      line-height: 1.25;
    }

    .brand-banner-text p {
      font-size: 0.98rem;
      color: #4A6B73;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 30px;
      max-width: 460px;
    }

    .brand-banner-socials {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 30px;
      background: var(--teal);
      color: var(--white);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .social-btn:hover { background: var(--gold); transform: translateY(-3px); }

    .social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    @media (max-width: 760px) {
      .brand-banner { padding: 64px 20px; }
      .brand-banner-inner { grid-template-columns: 1fr; gap: 36px; }
      .brand-banner-photo { transform: none; max-width: 380px; margin: 0 auto; }
      .brand-banner-text { text-align: center; }
      .brand-banner-text .section-label { text-align: center; }
      .brand-banner-text p { margin-left: auto; margin-right: auto; }
      .brand-banner-socials { justify-content: center; }
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, var(--teal) 0%, #1C6A7A 100%);
      text-align: center;
      padding: 96px 24px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      font-size: 18rem;
      color: rgba(255,255,255,0.04);
      top: -40px; left: -40px;
      line-height: 1;
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      color: var(--white);
      font-weight: 900;
      max-width: 640px;
      margin: 0 auto 20px;
    }

    .cta-section p {
      color: rgba(255,255,255,0.8);
      font-size: 1rem;
      font-weight: 300;
      max-width: 460px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      padding: 18px 46px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
      box-shadow: 0 8px 28px rgba(201,150,58,0.45);
    }

    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.65);
      text-align: center;
      padding: 48px 24px;
    }

    .footer-logo img { height: 80px; width: auto; margin-bottom: 16px; opacity: 0.92; }

    footer p { font-size: 0.82rem; line-height: 1.8; font-weight: 300; }

    .footer-links {
      display: flex;
      gap: 28px;
      justify-content: center;
      margin: 20px 0;
      list-style: none;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.55);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--teal-light), var(--gold));
      margin: 0 auto 16px;
      border-radius: 2px;
    }

    /* MOBILE NAV */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 101;
      flex-shrink: 0;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 3px;
      background: var(--teal);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(28,58,66,0.4);
      z-index: 99;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .nav-backdrop.active {
      display: block;
      opacity: 1;
    }

    body.nav-locked { overflow: hidden; }

    @media (max-width: 860px) {
      nav { padding: 10px 20px; }
      .nav-toggle { display: flex; }

      nav ul {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(80vw, 320px);
        margin: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 96px 0 32px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -16px 0 40px rgba(28,58,66,0.18);
        z-index: 100;
      }

      nav ul.nav-open { transform: translateX(0); }

      nav ul li { width: 100%; }

      nav ul li a {
        display: block;
        padding: 16px 32px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(42,143,163,0.08);
      }

      nav ul li a.nav-cta {
        margin: 20px 32px 0;
        display: block;
        text-align: center;
        border-bottom: none;
      }

      .nav-logo img { height: 46px; }

      section { padding: 64px 20px; }
      .hero { padding: 116px 20px 64px; }
      .about-section, .process-section, .pricing-section, .testimonials-section, .cta-section { padding: 64px 20px; }
      .gallery-section { padding: 56px 20px; }

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

    @media (max-width: 600px) {
      .gallery-text-grid { grid-template-columns: 1fr; }
      .services-grid, .pricing-grid, .occasions-grid, .process-steps { grid-template-columns: 1fr; }
      .about-container { gap: 32px; }
      footer { padding: 40px 20px; }
      .footer-links { flex-wrap: wrap; gap: 16px 22px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-waves svg { animation: none; }
      * { transition: none !important; }
    }
  
    /* ABOUT */
    .about-section {
      padding: 96px 24px;
      background: var(--white);
    }

    .about-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-photo-wrap {
      position: relative;
    }

    .about-photo-wrap::before {
      content: '';
      position: absolute;
      top: -14px;
      left: -14px;
      right: 14px;
      bottom: 14px;
      border: 2.5px solid var(--teal-pale);
      border-radius: 22px;
      z-index: 0;
    }

    .about-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: -14px;
      right: -14px;
      width: 110px;
      height: 110px;
      background: var(--gold-light);
      opacity: 0.22;
      border-radius: 50%;
      z-index: 0;
    }

    .about-photo {
      width: 100%;
      height: auto;
      border-radius: 18px;
      display: block;
      position: relative;
      z-index: 1;
      box-shadow: 0 20px 60px rgba(42,143,163,0.13);
      object-fit: cover;
      max-height: 560px;
    }

    .about-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .about-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.2vw, 2.7rem);
      font-weight: 900;
      color: var(--teal);
      line-height: 1.15;
      margin-bottom: 28px;
    }

    .about-heading em {
      font-style: normal;
      color: var(--gold);
    }

    .about-text p {
      font-size: 1.02rem;
      color: #4A6B73;
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .about-text p:last-of-type { margin-bottom: 0; }

    .about-divider {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      border-radius: 2px;
      margin: 28px 0;
    }

    .about-signature {
      font-family: 'Dancing Script', cursive;
      font-size: 1.55rem;
      color: var(--teal);
      margin-top: 28px !important;
    }

    @media (max-width: 860px) {
      .about-container { grid-template-columns: 1fr; gap: 44px; }
      .about-photo-wrap::before { display: none; }
    }

    
/* ============ ADDITIONS: SEO / SERVICE PAGE COMPONENTS ============ */

.page-hero {
  padding: 150px 24px 70px;
  text-align: center;
  background: linear-gradient(175deg, #EAF6FA 0%, var(--sand) 70%);
  position: relative;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 900; color: var(--teal); line-height: 1.12;
  max-width: 860px; margin: 0 auto;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lede {
  max-width: 640px; margin: 22px auto 0;
  font-size: 1.08rem; line-height: 1.8; color: #4A6B73; font-weight: 300;
}
.page-hero .hero-actions { margin-top: 34px; }

/* breadcrumbs */
.crumbs {
  max-width: 1100px; margin: 0 auto; padding: 96px 24px 0;
  font-size: 0.8rem; letter-spacing: 0.04em; color: #7FA3AC;
}
.crumbs a { color: var(--teal); text-decoration: none; font-weight: 700; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: 0.5; }

/* prose blocks */
.prose {
  max-width: 780px; margin: 0 auto;
  font-size: 1.04rem; line-height: 1.9; color: #4A6B73; font-weight: 300;
}
.prose h2 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  color: var(--teal); font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 48px 0 18px; line-height: 1.25;
}
.prose h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--ink); font-size: 1.3rem; margin: 32px 0 12px;
}
.prose p { margin-bottom: 20px; }
.prose ul { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 10px; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--teal); font-weight: 700; }

/* feature list */
.feature-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: 16px; padding: 30px 26px;
  border: 1px solid rgba(42,143,163,0.12);
  box-shadow: 0 8px 30px rgba(42,143,163,0.06);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif; color: var(--teal);
  font-size: 1.18rem; margin-bottom: 10px; font-weight: 700;
}
.feature-card p { font-size: 0.95rem; line-height: 1.7; color: #4A6B73; font-weight: 300; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid rgba(42,143,163,0.14);
  border-radius: 14px; margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 56px 22px 24px; position: relative;
  font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--teal);
}
.faq-q::after {
  content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); font-family: 'Lato', sans-serif; line-height: 1;
}
.faq-item.open .faq-q::after { content: '\2013'; }
.faq-a { display: none; padding: 0 24px 24px; font-size: 0.98rem; line-height: 1.8; color: #4A6B73; font-weight: 300; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--teal); font-weight: 700; }

/* service-area towns */
.town-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px;
}
.town-card {
  background: var(--white); border-radius: 14px; padding: 22px;
  border: 1px solid rgba(42,143,163,0.12);
}
.town-card h3 { font-family:'Playfair Display',serif; color: var(--teal); font-size: 1.05rem; margin-bottom: 6px; }
.town-card p { font-size: 0.88rem; line-height: 1.65; color: #6C8E97; font-weight: 300; }

/* related links strip */
.related {
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.related-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.related-links a {
  display: inline-block; padding: 11px 22px; border-radius: 30px;
  background: var(--white); border: 1.5px solid var(--teal-pale);
  color: var(--teal); text-decoration: none; font-weight: 700; font-size: 0.85rem;
  transition: all .2s;
}
.related-links a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* footer nav columns */
.footer-nav {
  max-width: 1100px; margin: 0 auto 36px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 30px; text-align: left;
}
.footer-nav h4 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 700;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.88rem; font-weight: 300; }
.footer-nav a:hover { color: var(--white); }

.btn-gold, .btn-primary, .btn-secondary { display: inline-block; }


/* ── Global image safety: never let width/height attributes distort an image ── */
img { max-width: 100%; height: auto; }
.nav-logo img, .footer-logo img { height: 60px; width: auto; }
.footer-logo img { height: 80px; }
@media (max-width: 768px) { .nav-logo img { height: 46px; } }
