/* COLOUR PALETTE #3 */
:root {
  --cream: #FEF3E7;
  --blush: #FFE9EC;
  --coral: #FFC1B8;
  --salmon: #FF9898;
  --fuchsia: #E35FA5;
  --text: #2d2d2d;
  --text-muted: #5a5a5a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--coral);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: block;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 3.5rem;
  width: auto;
  max-height: 56px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: var(--fuchsia);
}

.header-phone {
  color: var(--fuchsia);
  font-weight: 600;
  text-decoration: none;
}

.header-phone:hover {
  text-decoration: underline;
}

/* Mobile navigation dropdown (CSS-only checkbox hack) */
.nav-toggle {
  position: absolute;
  left: -9999px;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--coral);
  border-radius: 10px;
  background: var(--blush);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--fuchsia);
  border-radius: 2px;
  margin: 0;
}

@media (max-width: 768px) {
  .header-inner {
    align-items: center;
  }

  /* Swap the visual order of phone vs hamburger */
  .header-phone {
    order: 1;
  }

  .nav-toggle-label {
    order: 2;
  }

  /* Keep the dropdown menu below the top row */
  .nav {
    order: 3;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    background: var(--cream);
    border: 1px solid var(--coral);
    border-radius: 12px;
    padding: 0.5rem 0;
  }

  .nav a {
    padding: 0.75rem 0;
    border-top: 1px solid var(--coral);
    text-align: center;
    width: 100%;
  }

  .nav a:first-child {
    border-top: none;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2.25rem;
  line-height: 1.2;
}

/* Mobile: center on top, left & right below — avoids crushed 3-column row */
.hero-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-items: end;
  justify-items: center;
  column-gap: 0.75rem;
  row-gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 920px;
}

.hero-img:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}

.hero-img:nth-child(2) {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  max-width: min(100%, 340px);
}

.hero-img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.hero-img {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  max-height: min(42vw, 200px);
  border-radius: 10px;
  object-fit: contain;
  object-position: center bottom;
}

.hero-img:nth-child(2) {
  max-height: min(55vw, 260px);
}

@media (min-width: 640px) {
  .hero-visuals {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    column-gap: unset;
    row-gap: unset;
    gap: 1.15rem 2rem;
  }

  .hero-img:nth-child(1),
  .hero-img:nth-child(2),
  .hero-img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    max-height: none;
    align-self: auto;
  }

  .hero-img {
    height: min(300px, 34vw);
    max-height: none;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(1px);
}

.btn-primary {
  background: var(--salmon);
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero .btn-primary {
  margin-bottom: 1.1rem;
}

.btn-secondary {
  background: var(--fuchsia);
  color: #fff;
  margin-top: 0.5rem;
}

.hero-phone {
  display: block;
  color: var(--fuchsia);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badges li {
  position: relative;
}

.trust-badges li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.25rem;
  color: var(--coral);
}

/* Section titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--fuchsia);
  margin: 0 0 0.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 2rem;
}

/* About */
.about {
  padding: 4rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-card {
  background: var(--blush);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--coral);
}

.about-card h3 {
  font-size: 1.15rem;
  color: var(--fuchsia);
  margin: 0 0 0.5rem;
}

.about-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}

.stats li {
  background: var(--coral);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--fuchsia);
  margin-bottom: 0.25rem;
}

/* Services */
.services {
  padding: 4rem 0;
  background: var(--blush);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--coral);
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--fuchsia);
  margin: 0 0 0.5rem;
}

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

.service-card ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  flex-grow: 1;
}

.service-card ul.price-list {
  list-style: none;
  padding-left: 0;
  font-weight: 500;
}

.service-card ul.price-list li {
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--blush);
}

.service-card ul.price-list li:last-child {
  border-bottom: none;
}

.service-card .btn {
  align-self: flex-start;
}

/* Services bottom row: rates + agility card */
.services-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (max-width: 720px) {
  .services-bottom {
    grid-template-columns: 1fr;
  }
}

/* Rates & policies */
.rates-policies {
  margin-top: 0;
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--coral);
  border-radius: 12px;
  min-width: 0;
}

.rates-policies h3.rates-title {
  font-size: 1.1rem;
  color: var(--fuchsia);
  margin: 1.25rem 0 0.5rem;
}

.rates-policies h3.rates-title:first-child {
  margin-top: 0;
}

.rates-policies p {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

.rates-policies ul {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: var(--cream);
}

.faq-list {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.faq-item {
  background: var(--blush);
  border: 1px solid var(--coral);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--fuchsia);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  padding-top: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-cta {
  color: var(--text-muted);
}

.faq-cta a {
  color: var(--fuchsia);
  font-weight: 600;
}

/* Gallery */
.gallery {
  padding: 4rem 0;
  background: var(--blush);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--coral);
  background: var(--cream);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

/* Contact */
.contact {
  padding: 4rem 0;
  background: var(--blush);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

.contact-info .section-intro {
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--fuchsia);
  font-weight: 600;
}

.contact-form {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--coral);
}

.contact-form h3 {
  font-size: 1.15rem;
  color: var(--fuchsia);
  margin: 0 0 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--coral);
  border-radius: 6px;
  background: #fff;
}

.contact-form button[type="submit"] {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background: var(--fuchsia);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-phone a,
.footer-links a,
.footer-credit a {
  font-weight: 600;
}

.footer-credit {
  font-size: 0.85rem;
  opacity: 0.92;
  margin-top: 0.5rem;
}

.trust-badges a {
  color: var(--fuchsia);
  text-decoration: none;
  font-weight: 600;
}

.trust-badges a:hover {
  text-decoration: underline;
}

/* Privacy / legal pages */
.policy-page {
  padding: 2.5rem 0 3rem;
  background: var(--cream);
}

.policy-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.policy-meta {
  margin: 0.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-intro {
  margin: 1.5rem 0 2rem;
  max-width: 65ch;
  font-size: 1.05rem;
}

.policy-section {
  margin-bottom: 2rem;
  max-width: 65ch;
}

.policy-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
}

.policy-section p,
.policy-section ul {
  margin: 0.5rem 0;
}

.policy-section ul {
  padding-left: 1.35rem;
}

.policy-section li {
  margin: 0.35rem 0;
}

.policy-section a {
  color: var(--fuchsia);
  font-weight: 600;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--coral);
}

.policy-back a {
  color: var(--fuchsia);
  font-weight: 600;
  text-decoration: none;
}

.policy-back a:hover {
  text-decoration: underline;
}

.policy-divider {
  border: none;
  border-top: 1px solid var(--coral);
  margin: 2rem 0;
  max-width: 65ch;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.25rem 1.25rem;
  background: #fff;
  border-top: 2px solid var(--fuchsia);
  box-shadow: 0 -8px 24px rgba(45, 45, 45, 0.12);
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner-text {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-banner-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.cookie-banner-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner-desc a {
  color: var(--fuchsia);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-btn {
  margin: 0 !important;
}

.cookie-banner .btn-secondary {
  background: transparent;
  color: var(--fuchsia);
  border: 2px solid var(--fuchsia);
}

.cookie-banner .btn-secondary:hover {
  background: var(--blush);
}

/* Footer: cookie settings (button styled as link) */
.site-footer .footer-link-button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  vertical-align: baseline;
}

.site-footer .footer-link-button:hover {
  opacity: 0.92;
}
