/* =====================================================
   Floral Artistry by Yvonne — design system
   Brand palette (sampled from the logo):
     deep teal #0b3039 · rose gold #f8d0b6 / #d6a392 · warm ivory
   Type: Cormorant Garamond (display) + Jost (body)
   ===================================================== */

:root {
  --ivory: #faf7f1;
  --ivory-deep: #f3ede2;
  --teal: #0b3039;
  --teal-soft: #155060;
  --rose: #f8d0b6;
  --rose-deep: #d6a392;
  --rose-accent: #b9836f; /* darker rose gold for small text on ivory */
  --charcoal: #2b2a27;
  --muted: #6f6c64;
  --line: rgba(11, 48, 57, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;
  --shadow-soft: 0 18px 45px -22px rgba(11, 48, 57, 0.35);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--teal);
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.45rem; }

a { color: var(--teal); }

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-accent);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-sub { color: var(--muted); margin-top: 1.25rem; }
.section-sub a { color: var(--rose-accent); }

/* Delicate stem divider */
.flourish {
  width: 72px;
  height: 14px;
  margin: 1.4rem 0 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 14' fill='none' stroke='%23d6a392' stroke-width='1'%3E%3Cpath d='M0 7h28M44 7h28'/%3E%3Cpath d='M36 2c2.5 1.5 4 3 4 5s-1.5 3.5-4 5c-2.5-1.5-4-3-4-5s1.5-3.5 4-5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.flourish--center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--ivory);
}

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

.btn-ghost {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost:hover {
  background: var(--teal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose);
  color: var(--teal);
}

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

.btn-block { width: 100%; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.is-scrolled { border-bottom-color: var(--line); }

.nav-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px -4px rgba(11, 48, 57, 0.4);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal);
}

.nav-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--rose-accent); }

.nav-links .nav-cta {
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links .nav-cta:hover {
  background: var(--teal);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--teal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Hero (split layout) ===== */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--ivory) 55%, var(--ivory-deep) 100%);
  overflow: hidden;
  padding: 7.5rem 0 4.5rem;
}

/* soft rose-gold bloom behind the layout */
.hero-bloom {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 46% 42% at 82% 24%, rgba(248, 208, 182, 0.4), transparent 70%),
    radial-gradient(ellipse 34% 30% at 8% 88%, rgba(21, 80, 96, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-accent);
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--charcoal);
  margin-top: 0.8rem;
}

.hero-intro {
  max-width: 460px;
  color: var(--muted);
  margin-top: 1.2rem;
}

.hero-award {
  margin: 1.8rem 0 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
}

.award-laurel { color: var(--rose-accent); margin: 0 0.6rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* offset rose-gold frame behind the portrait */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  border: 1px solid var(--rose-deep);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--teal-soft);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--teal);
  color: var(--ivory);
  padding: 1.05rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-stars {
  color: var(--rose);
  letter-spacing: 0.18em;
  margin-right: 0.35rem;
}

.trust-sep { color: var(--rose-deep); }

/* ===== About ===== */
.about { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p + p { margin-top: 1.1rem; }

.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--rose-accent);
  margin-top: 1.6rem !important;
}

/* ===== Services ===== */
.services { background: var(--ivory-deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose-deep);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.3rem;
  color: var(--rose-accent);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: 0.7rem; }

.service-card p { font-size: 0.95rem; color: var(--muted); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 1.2rem;
}

.gallery-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: zoom-in;
}

.gallery-tile--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-tile:hover img { transform: scale(1.045); }

/* Instagram CTA tile */
.gallery-tile--follow {
  background: var(--teal);
  color: var(--rose);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem;
  cursor: pointer;
}

.gallery-tile--follow svg {
  width: 42px;
  height: 42px;
  margin-bottom: 0.4rem;
}

.follow-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.2;
}

.follow-handle {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-tile--follow:hover { background: var(--teal-soft); }

/* ===== Kind words / Google reviews ===== */
.kind-words { background: var(--teal); }

.kind-words .section-eyebrow { color: var(--rose); }
.kind-words h2 { color: var(--ivory); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.4rem;
  background: rgba(250, 247, 241, 0.07);
  border: 1px solid rgba(250, 247, 241, 0.18);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.9rem;
}

.google-g {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.15rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.google-score { font-weight: 500; font-size: 1.05rem; }

.google-stars { color: var(--rose); letter-spacing: 0.2em; }

.google-count { color: rgba(250, 247, 241, 0.8); }

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(250, 247, 241, 0.06);
  border: 1px solid rgba(250, 247, 241, 0.16);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--teal);
  font-weight: 500;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-name {
  color: var(--ivory);
  font-weight: 400;
  font-size: 0.95rem;
}

.review-source {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
}

.review-stars {
  color: var(--rose);
  letter-spacing: 0.28em;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.review-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ivory);
  line-height: 1.55;
}

.review-card--cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
  border-style: dashed;
}

.review-cta-text {
  font-style: normal !important;
  color: rgba(250, 247, 241, 0.85) !important;
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
}

.review-fb-link {
  color: var(--rose);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.review-fb-link:hover { color: var(--ivory); }

/* ===== Enquiry ===== */
.enquire { background: var(--ivory); }

.enquire-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.enquire-intro p { color: var(--muted); }

.enquire-contacts {
  list-style: none;
  margin-top: 2.2rem;
  display: grid;
  gap: 1.1rem;
}

.enquire-contacts li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.contact-label {
  flex: 0 0 62px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-accent);
}

.enquire-contacts a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s ease;
}

.enquire-contacts a:hover { border-bottom-color: var(--rose-deep); }

.enquire-form {
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.form-row + .form-row { margin-top: 1.3rem; }

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.enquire-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.45rem;
}

.enquire-form label span { color: var(--rose-accent); }

.enquire-form input,
.enquire-form select,
.enquire-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquire-form textarea { resize: vertical; }

.enquire-form input:focus,
.enquire-form select:focus,
.enquire-form textarea:focus {
  outline: none;
  border-color: var(--teal-soft);
  box-shadow: 0 0 0 3px rgba(11, 48, 57, 0.1);
}

.enquire-form .btn { margin-top: 1.6rem; }

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.4em;
}

.form-status.is-success { color: var(--teal); }
.form-status.is-error { color: #a04a3d; }

/* ===== Footer (deep teal, echoes the logo) ===== */
.footer {
  background: var(--teal);
  color: var(--ivory);
  padding: 3.5rem 0 2rem;
}

.footer a { color: var(--ivory); }

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-contact a {
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.footer-contact a:hover { border-bottom-color: var(--rose); }

.footer-contact p { color: rgba(250, 247, 241, 0.7); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-self: end;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.footer-social a:hover { color: var(--rose); }

.footer-social svg { width: 20px; height: 20px; }

.footer-fine {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250, 247, 241, 0.6);
  margin-top: 2.8rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 48, 57, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover { opacity: 1; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll-line { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .about-grid, .enquire-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { justify-self: start; flex-direction: row; gap: 1.6rem; }

  .hero { min-height: 0; padding-top: 7rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media {
    max-width: 420px;
    width: 100%;
  }
  .hero-scroll { display: none; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.is-open { max-height: 340px; }

  .nav-links a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-links .nav-cta {
    border: none;
    color: var(--rose-accent);
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .gallery-tile--wide { grid-column: span 2; }
  .form-row--split { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
