:root{
    --cream: #FCF9EA;
    --cream-deep: #F5EFDA;
    --teal: #BADFDB;
    --teal-deep: #8FC6C0;
    --coral: #FFA4A4;
    --coral-deep: #F07E7E;
    --pink: #FFBDBD;
    --ink: #362E2A;
    --ink-soft: #6E645E;
    --paper: #FFFFFF;
    --radius-lg: 28px;
    --radius-md: 18px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.01em;
  }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }
  ::selection { background: var(--coral); color: var(--paper); }
  :focus-visible {
    outline: 2.5px solid var(--coral-deep);
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }

  /* ---------- Garland divider (signature motif) ---------- */
  .garland {
    height: 30px;
    width: 100%;
    background-image:
      radial-gradient(circle 9px at 10px 15px, var(--coral) 99%, transparent 100%),
      radial-gradient(circle 8px at 50px 17px, var(--teal) 99%, transparent 100%),
      radial-gradient(circle 9px at 90px 14px, var(--pink) 99%, transparent 100%),
      radial-gradient(circle 7px at 130px 18px, var(--teal-deep) 99%, transparent 100%);
    background-size: 160px 30px;
    background-repeat: repeat-x;
    background-position: center;
    opacity: .9;
  }
  .garland.small { height: 20px; background-size: 110px 20px; }

  /* ---------- Nav ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 249, 234, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(54,46,42,0.07);
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .logo span { color: var(--coral-deep); font-style: italic; }
  .logo-brand { display: flex; align-items: center; gap: 10px; }
  .logo-img { height: 64px; width: auto; max-width: 220px; object-fit: contain; }
  .logo-fallback { display: none; align-items: baseline; gap: 6px; }
  .logo-fallback em { color: var(--coral-deep); font-style: italic; }
  .logo-brand:has(.logo-img[style*="display: none"]) .logo-fallback { display: flex; }
  .nav-links {
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 600;
  }
  .nav-links a { position: relative; padding: 4px 0; }
  .nav-links a::after {
    content:"";
    position:absolute; left:0; bottom:-2px;
    width:0; height:2px; background:var(--coral-deep);
    transition: width .25s ease;
  }
  .nav-links a:hover::after { width:100%; }
  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    transition: transform .2s ease, background .2s ease;
  }
  .nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }
  .nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:6px; }
  .nav-toggle span { display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; }

  /* ---------- Hero ---------- */
  .hero {
    padding: 88px 0 40px;
    position: relative;
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral-deep);
    background: rgba(255,164,164,0.16);
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    content:"";
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--coral-deep);
    display:inline-block;
  }
  .hero h1 {
    font-size: clamp(38px, 4.6vw, 60px);
    max-width: 620px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--coral-deep);
  }
  .hero p.lead {
    margin-top: 24px;
    font-size: 18px;
    max-width: 480px;
  }
  .btn-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--coral-deep);
    color: var(--paper);
    box-shadow: 0 10px 24px -8px rgba(240,126,126,0.6);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(240,126,126,0.75); }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-outline:hover { background: var(--ink); color: var(--cream); }

  .hero-visual { position: relative; height: 460px; }
  .hero-visual svg { width: 100%; height: 100%; }
  .floor-shadow {
    position: absolute;
    bottom: 18px; left: 8%;
    width: 84%; height: 22px;
    background: radial-gradient(ellipse at center, rgba(54,46,42,0.14), transparent 72%);
    filter: blur(2px);
  }

  .stat-row {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(54,46,42,0.1);
  }
  .stat b { font-family:'Fraunces', serif; font-size: 26px; display:block; color: var(--coral-deep); }
  .stat span { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

  /* ---------- Hero: full-bleed photo variant ---------- */
  .hero-photo {
    padding: 130px 0;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: visible;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(20,15,12,0.7) 0%, rgba(20,15,12,0.55) 50%, rgba(20,15,12,0.7) 100%),
      linear-gradient(0deg, rgba(20,15,12,0.3) 0%, transparent 30%);
  }
  .hero-photo-centered {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .hero-photo-centered .hero-photo-inner {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-photo-centered .eyebrow { margin-left: auto; margin-right: auto; }
  .hero-photo-centered .hero-photo-lead { margin-left: auto; margin-right: auto; }
  .hero-photo-centered .btn-row { justify-content: center; }
  .hero-photo .wrap.hero-photo-content {
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 0 6vw;
  }
  .hero-photo-content {
    position: relative;
    z-index: 1;
  }
  .hero-photo-inner {
    max-width: 620px;
  }
  .eyebrow-light {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--pink);
    backdrop-filter: blur(3px);
  }
  .eyebrow-light::before { background: var(--pink); }
  .hero-photo-title {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--cream);
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }
  .hero-photo-title em { font-style: italic; color: var(--pink); }
  .hero-photo-lead {
    margin-top: 26px;
    font-size: 18px;
    color: rgba(252,249,234,0.88);
    max-width: 460px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  }
  .btn-outline-light {
    border-color: rgba(252,249,234,0.75);
    color: var(--cream);
  }
  .btn-outline-light:hover { background: var(--cream); color: var(--ink); }
  .stat-row-light {
    border-top-color: rgba(252,249,234,0.25);
    flex-wrap: nowrap;
    gap: 36px;
  }
  .stat-row-light .stat b { color: var(--pink); }
  .stat-row-light .stat span { color: rgba(252,249,234,0.78); white-space: nowrap; }

  .hero-social-row {
    display: flex;
    gap: 14px;
    margin-top: 40px;
  }
  .hero-photo-centered .hero-social-row { justify-content: center; }
  .hero-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(252,249,234,0.3);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
  }
  .hero-social-icon:hover {
    background: var(--coral-deep);
    border-color: var(--coral-deep);
    transform: translateY(-2px);
  }

  @media (max-width: 1100px) {
    .hero-photo-title { font-size: clamp(32px, 4.6vw, 48px); }
    .hero-photo-lead { font-size: 16.5px; }
    .hero-photo { padding: 110px 0; }
  }
  @media (max-width: 900px) {
    .stat-row-light { flex-wrap: wrap; gap: 28px; }
    .stat-row-light .stat span { white-space: normal; }
  }
  @media (max-width: 720px) {
    .hero-photo { min-height: 0; padding: 100px 0 60px; }
    .hero-photo .wrap.hero-photo-content { padding: 0 20px; }
    .hero-photo-inner { max-width: 100%; }
    .hero-overlay {
      background:
        linear-gradient(180deg, rgba(20,15,12,0.55) 0%, rgba(20,15,12,0.82) 65%, rgba(20,15,12,0.9) 100%);
    }
    .hero-bg img { object-position: 65% center; }
  }

  /* ---------- Section shell ---------- */
  section { padding: 96px 0; }
  .section-head { max-width: 560px; margin-bottom: 56px; }
  .section-head .eyebrow { background: rgba(143,198,192,0.22); color: #3f7f78; }
  .section-head .eyebrow::before { background: #3f7f78; }
  .section-head h2 { font-size: clamp(30px, 3.4vw, 42px); }
  .section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }

  /* ---------- Services ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid rgba(54,46,42,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(54,46,42,0.25); }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items:center; justify-content:center;
    margin-bottom: 20px;
  }
  .service-card h3 { font-size: 19.5px; margin-bottom: 10px; }
  .service-card p { color: var(--ink-soft); font-size: 14.8px; }

  /* ---------- Services: photo-card variant ---------- */
  .service-card-photo { padding: 14px 14px 26px; }
  .service-photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3 / 4;
    position: relative;
  }
  .service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
  }
  .service-card-photo:hover .service-photo img { transform: scale(1.08); }
  .service-card-photo h3,
  .service-card-photo p,
  .service-card-photo .service-list { padding: 0 12px; }
  .service-card-photo p { margin-bottom: 14px; }
  .service-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13.8px;
    color: var(--ink-soft);
  }
  .service-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--coral-deep);
  }

  /* ---------- Occasions ---------- */
  .occasions-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 56px;
    align-items: center;
  }
  .occasions-copy .section-head,
  .occasions-copy { margin: 0; }
  .occasions-copy h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 16px 0 16px; }
  .occasions-copy p { color: var(--ink-soft); font-size: 15.5px; max-width: 360px; }

  .occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .occasion-card {
    background: var(--paper);
    border-radius: 18px;
    padding: 28px 16px 22px;
    text-align: center;
    box-shadow: 0 12px 30px -18px rgba(54,46,42,0.2);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .occasion-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(54,46,42,0.28); }
  .occasion-emoji {
    display: block;
    font-size: 32px;
    margin-bottom: 14px;
  }
  .occasion-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  .occasion-rule {
    display: block;
    width: 26px;
    height: 1px;
    background: rgba(54,46,42,0.15);
    margin: 12px auto;
  }
  .occasion-card p {
    font-size: 12.8px;
    color: var(--ink-soft);
  }

  @media (max-width: 980px) {
    .occasions-layout { grid-template-columns: 1fr; }
    .occasions-copy p { max-width: 100%; }
    .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .occasion-card { padding: 20px 10px 16px; }
  }

  /* ---------- Process: simple quote-flow variant ---------- */
  .process-simple {
    text-align: center;
    padding: 56px 32px;
    max-width: 600px;
  }
  .process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--coral-deep);
    border: 1px solid rgba(255,164,164,0.5);
    padding: 8px 18px;
    border-radius: 999px;
    margin: 0 auto 20px;
  }
  .process-title {
    font-size: clamp(22px, 2.6vw, 32px);
    margin-bottom: 28px;
  }
  .process-title em { font-style: italic; color: var(--coral-deep); }
  .process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
  }
  .process-step-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
  }
  .process-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--coral-deep);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12.5px;
    flex-shrink: 0;
  }
  .process-dash {
    width: 28px;
    height: 1px;
    background: rgba(240,126,126,0.4);
    flex-shrink: 0;
  }
  .process-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--cream);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 4px;
    transition: transform .2s ease, background .2s ease;
  }
  .process-cta:hover { background: var(--coral-deep); transform: translateY(-2px); }

  @media (max-width: 700px) {
    .process-title { font-size: clamp(22px, 5vw, 28px); }
    .process-steps {
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .process-dash { display: none; }
  }
  @media (max-width: 640px) {
    .process-simple { padding: 48px 20px; }
  }

  /* ---------- Social follow banner ---------- */
  .social-follow {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 90px 0;
  }
  .social-follow-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .social-follow-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .social-follow-overlay {
    position: absolute;
    inset: 0;
  }
  .social-follow-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .social-follow-title {
    margin-top: 18px;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--cream);
  }
  .social-follow-lead {
    margin-top: 16px;
    font-size: 16.5px;
    color: rgba(252,249,234,0.85);
    max-width: 440px;
  }
  .social-follow-icons { margin-top: 32px; }

  /* ---------- Delivery & Installation ---------- */
  .delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .delivery-copy h2 {
    font-size: clamp(30px, 3.4vw, 42px);
    margin: 16px 0 20px;
  }
  .delivery-lead {
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .delivery-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .delivery-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--cream-deep);
    border: 1px solid rgba(54,46,42,0.06);
    border-radius: 14px;
    padding: 18px 20px;
  }
  .delivery-feature svg { flex-shrink: 0; margin-top: 2px; }
  .delivery-feature h4 { font-size: 15.5px; margin-bottom: 4px; }
  .delivery-feature p { font-size: 13.8px; color: var(--ink-soft); }

  .delivery-visual { position: relative; }
  .delivery-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(54,46,42,0.35);
  }
  .delivery-frame img { width: 100%; display: block; }
  .delivery-visual::before,
  .delivery-visual::after {
    content: "";
    position: absolute;
    border: 1.5px solid var(--coral-deep);
    border-radius: 16px;
    z-index: -1;
  }
  .delivery-visual::before { top: -18px; right: -18px; width: 90px; height: 90px; }
  .delivery-visual::after { bottom: -18px; left: -18px; width: 70px; height: 70px; border-color: var(--teal-deep); }

  @media (max-width: 900px) {
    .delivery-grid { grid-template-columns: 1fr; gap: 40px; }
    .delivery-visual { order: -1; }
  }

  /* ---------- Gallery mock ---------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 18px;
  }
  .gallery-tile {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display:flex; align-items:flex-end;
    padding: 16px;
  }
  .gallery-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-tile span {
    position: relative;
    z-index: 1;
    color: var(--paper);
    font-weight: 700;
    font-size: 13px;
    background: rgba(54,46,42,0.35);
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
  }
  .gallery-tile.tall { grid-row: span 2; }

  /* ---------- Testimonials ---------- */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: var(--cream-deep);
    border-radius: var(--radius-lg);
    padding: 30px;
  }
  .testi-card .stars { color: var(--coral-deep); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
  .testi-card p.quote { font-family:'Fraunces', serif; font-size: 17px; font-style: italic; line-height:1.5; }
  .testi-card .who { margin-top: 20px; font-weight: 700; font-size: 14px; color: var(--ink-soft); }

  /* ---------- Contact ---------- */
  .contact-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 40px;
    padding: 64px;
  }
  .contact-shell .section-head { max-width: 100%; }
  .contact-shell .eyebrow { background: rgba(255,164,164,0.18); color: var(--coral); }
  .contact-shell .eyebrow::before { background: var(--coral); }
  .contact-shell .section-head p { color: rgba(252,249,234,0.7); }

  .info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
  .info-item { display: flex; gap: 16px; align-items: flex-start; }
  .info-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,164,164,0.16);
    display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }
  .info-item b { display:block; font-size: 15px; margin-bottom: 2px; }
  .info-item span { font-size: 14px; color: rgba(252,249,234,0.65); }

  .social-row { display: flex; gap: 12px; margin-top: 32px; }
  .social-row a {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(252,249,234,0.25);
    display:flex; align-items:center; justify-content:center;
    transition: background .2s ease, border-color .2s ease;
  }
  .social-row a:hover { background: var(--coral-deep); border-color: var(--coral-deep); }

  form.enquiry { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-size: 13px; font-weight: 700; color: rgba(252,249,234,0.75); }
  .field input, .field select, .field textarea {
    background: rgba(252,249,234,0.06);
    border: 1px solid rgba(252,249,234,0.2);
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--cream);
    font-family: inherit;
    font-size: 14.5px;
  }
  .field input::placeholder, .field textarea::placeholder { color: rgba(252,249,234,0.4); }
  .field select option { color: var(--ink); }
  .field textarea { resize: vertical; min-height: 90px; }
  .submit-btn {
    margin-top: 6px;
    background: var(--coral);
    color: var(--ink);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease;
  }
  .submit-btn:hover { background: var(--pink); }
  .form-note { font-size: 12.5px; color: rgba(252,249,234,0.5); text-align: center; }
  .form-success {
    display:none;
    background: rgba(186,223,219,0.15);
    border: 1px solid var(--teal);
    color: var(--cream);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
  }

  /* ---------- Footer ---------- */
  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 48px 0 0;
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
  }
  .footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
  }
  .footer-cta h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--cream);
  }
  .footer-cta p {
    margin-top: 6px;
    font-size: 14px;
    color: rgba(252,249,234,0.6);
  }
  .footer-cta-btn {
    background: var(--coral-deep);
    color: var(--paper);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform .2s ease, background .2s ease;
  }
  .footer-cta-btn:hover { background: var(--pink); color: var(--ink); transform: translateY(-2px); }

  .footer-divider {
    height: 1px;
    background: rgba(252,249,234,0.15);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 40px;
    padding: 48px 0;
  }
  .footer-logo-img { height: 52px; filter: brightness(1.1); }
  .footer-tagline {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,164,164,0.85);
    max-width: 280px;
  }
  .footer-stars {
    margin-top: 20px;
    color: #E9B949;
    letter-spacing: 3px;
    font-size: 16px;
  }
  .footer-rating {
    margin-top: 8px;
    font-size: 12.5px;
    color: rgba(252,249,234,0.55);
  }

  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 14px;
    padding-bottom: 14px;
    position: relative;
  }
  .footer-col h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--coral-deep);
  }
  .footer-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,164,164,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s ease;
  }
  .footer-links a::before { content: "›"; font-weight: 700; }
  .footer-links a:hover { color: var(--pink); }

  .footer-contact {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
  }
  .footer-contact li span { color: rgba(252,249,234,0.85); }
  .footer-contact li a { color: rgba(255,164,164,0.95); }
  .footer-contact li a:hover { color: var(--pink); }
  .footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.85; }

  .footer-bottom {
    border-top: 1px solid rgba(252,249,234,0.12);
    padding: 22px 0;
    text-align: center;
  }
  .footer-bottom p {
    font-size: 12.5px;
    color: rgba(252,249,234,0.5);
  }

  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-tagline { max-width: 100%; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-visual { height: 320px; order: -1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-shell { grid-template-columns: 1fr; padding: 40px 28px; border-radius: 28px; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    section { padding: 64px 0; }
    .wrap { padding: 0 20px; }
    .stat-row { gap: 28px; }
  }
