    /* =====================================
       Reset / Base
       ===================================== */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: #faf6f8;
      color: #26222a;
      font-family: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI",
                   "Trebuchet MS", Verdana, Arial, sans-serif;
      line-height: 1.6;
    }

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

/* =====================================
   Global typography fallbacks
   (safe defaults for auto-generated pages)
   ===================================== */

:root {
  --flow-font-body: 'Rubik', -apple-system, BlinkMacSystemFont,
                    "Segoe UI", "Trebuchet MS", Verdana, Arial, sans-serif;
  --flow-font-heading: 'Bitter', Georgia, "Times New Roman", serif;
  --flow-color-text: #26222a;
  --flow-color-heading: #7d0a29;
}

/* Base text */
body {
  font-family: var(--flow-font-body);
  color: var(--flow-color-text);
  line-height: 1.6;
  font-size: 16px;
}

/* Headings – will be overridden by more specific page styles if present */
h1,
h2,
h3 {
  font-family: var(--flow-font-heading);
  font-weight: 400;
  line-height: 1.3;
  margin: 1.5rem 0 0.75rem;
}

/* Sizes give a nice hierarchy but stay modest on smaller screens */
h1 {
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* Paragraphs */
p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
}

/* Lists */
ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;   /* simple bullets, not flush left */
}

li {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  line-height: 1.6;
}


.select { 
    border: 1px solid #c4c4c4; 
    width: 275px; 
    font-size: 13px; 
    padding: 4px 4px 4px 4px; 
    border-radius: 4px; 
    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px; 
    box-shadow: 0px 0px 8px #d9d9d9; 
    -moz-box-shadow: 0px 0px 8px #d9d9d9; 
    -webkit-box-shadow: 0px 0px 8px #d9d9d9; 
} 
 
.select:focus { 
    outline: none; 
    border: 1px solid #7bc1f7; 
    box-shadow: 0px 0px 8px #7bc1f7; 
    -moz-box-shadow: 0px 0px 8px #7bc1f7; 
    -webkit-box-shadow: 0px 0px 8px #7bc1f7; 
} 

.smallselect { 
    border: 1px solid #c4c4c4; 
    width: 135px; 
    font-size: 13px; 
    padding: 4px 4px 4px 4px; 
    border-radius: 4px; 
    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px; 
    box-shadow: 0px 0px 8px #d9d9d9; 
    -moz-box-shadow: 0px 0px 8px #d9d9d9; 
    -webkit-box-shadow: 0px 0px 8px #d9d9d9; 
} 
 
.smallselect:focus { 
    outline: none; 
    border: 1px solid #7bc1f7; 
    box-shadow: 0px 0px 8px #7bc1f7; 
    -moz-box-shadow: 0px 0px 8px #7bc1f7; 
    -webkit-box-shadow: 0px 0px 8px #7bc1f7; 
} 

/* Basic emphasis, in case nothing else styles these */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}


    a {
      color: #7d0a29;
      text-decoration: none;
    }

    a:hover,
    a:focus {
      color: #4b101f;
      text-decoration: underline;
    }

    .clear {
      clear: both;
    }

    /* =====================================
       Back to top button
       ===================================== */
    #myBtn {
      display: none;
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 999;
      border: none;
      outline: none;
      background-color: #ffffff;
      color: #7d0a29;
      cursor: pointer;
      padding: 0.55rem 1.2rem;
      border-radius: 999px;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

    #myBtn:hover {
      background-color: #f7e3e3;
    }

    /* =====================================
       Header & Navigation
       ===================================== */
    header.site-header {
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .topbar {
      background: linear-gradient(110deg, #7c0128, #b3547a);
      padding: 0.75rem 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #ffffff;
    }

    .topbar-logo {
      display: flex;
      align-items: center;
    }

    .topbar-logo img {
      max-height: 56px;
      margin-right: 0.85rem;
    }

    .topbar-title {
      margin: 0;
      font-family: 'Bitter', serif;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #fbe5e5;
    }

    @media (max-width: 600px) {
      .topbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .topbar-title {
        margin-top: 0.4rem;
        font-size: 0.95rem;
      }
    }

    /* Main nav */

    nav#main-nav {
      background: #ffffff;
    }

    nav#main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0 5vw;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    nav#main-nav > ul > li {
      position: relative;
      margin-right: 1.5rem;
    }

    nav#main-nav > ul > li:last-child {
      margin-right: 0;
    }

    nav#main-nav a {
      display: flex;
      align-items: center;
      padding: 0.9rem 0;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #44424a;
      border-bottom: 3px solid transparent;
    }

    nav#main-nav li.active > a,
    nav#main-nav li:hover > a {
      color: #b3547a;
      border-bottom-color: #b3547a;
      text-decoration: none;
    }

    /* Dropdown */

    nav#main-nav li.has-sub > ul {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 15rem;
      background: #ffffff;
      border-radius: 0 0 0.9rem 0.9rem;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
      padding: 0.4rem 0;
      margin: 0;
      display: none;
      z-index: 50;
      list-style: none;
    }

    nav#main-nav li.has-sub:hover > ul {
      display: block;
    }

    nav#main-nav li.has-sub ul li {
      margin: 0;
    }

    nav#main-nav li.has-sub ul li a {
      padding: 0.55rem 1rem;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0.03em;
      border-bottom: none;
      color: #3b3440;
    }

    nav#main-nav li.has-sub ul li a:hover {
      background: #faf6f8;
      color: #b3547a;
    }

/* Hamburger toggle (mobile nav) */

.nav-toggle {
  display: none; /* shown only on small screens */
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  cursor: pointer;
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Optional: little “X” animation when nav is open */
#main-nav.open + .nav-toggle span,
.nav-toggle[aria-expanded="true"] span {}

/* We’ll override with more specific selectors in the media query */


    /* Social icons in nav (use existing sprites) */
    .facebook,
    .instagram {
      display: block;
      width: 33px;
      height: 33px;
    }

    .facebook {
      background: url("https://www.flowimage.co.uk/gifs/facebookicon2.png") no-repeat 0 0;
    }

    .facebook:hover {
      background-position: 0 -33px;
    }

    .instagram {
      background: url("https://www.flowimage.co.uk/gifs/instagramicon2.png") no-repeat 0 0;
    }

    .instagram:hover {
      background-position: 0 -33px;
    }

/* Mobile nav (hamburger) */
@media (max-width: 800px) {
  .topbar {
    flex-direction: row;
    align-items: center;
  }

  .topbar-title {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Hide nav by default on mobile */
  nav#main-nav {
    display: none;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  /* When JS adds .open, show it */
  nav#main-nav.open {
    display: block;
  }

  /* Stack menu items vertically */
  nav#main-nav ul {
    flex-direction: column;
    padding: 0.25rem 1.25rem 0.75rem;
  }

  nav#main-nav > ul > li {
    width: 100%;
    margin-right: 0;
  }

  nav#main-nav a {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  nav#main-nav li.has-sub > ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  /* Hamburger “X” animation when open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


    /* =====================================
       Hero / intro
       ===================================== */
    .hero {
      padding: 2.5rem 5vw 1.5rem;
      background: #e8d8db;
    }

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  /* Your actual hero image */
  background-image: url("https://www.flowimage.co.uk/gifs/newhome2026.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

    .hero-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(23, 16, 33, 0.72),
        rgba(23, 16, 33, 0.35),
        transparent 60%
      );
      pointer-events: none;
    }

    .hero-overlay {
      position: relative;
      z-index: 1;
      max-width: 430px;
      padding: 3rem 3.2rem;
      color: #ffffff;
    }

    .hero-overlay h2 {
      margin: 0 0 1.25rem;
      font-family: 'Bitter', serif;
      font-size: 2rem;
      line-height: 1.15;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-overlay p {
      margin: 0 0 0.8rem;
      font-size: 0.98rem;
    }

    .hero-overlay .signature {
      margin-top: 1.4rem;
    }

    .hero-overlay .signature img {
      height: 69px;
      width: auto;
    }

    @media (max-width: 900px) {
      .hero {
        padding: 1.75rem 4vw 1rem;
      }

      .hero-overlay {
        max-width: 100%;
        padding: 2.1rem 1.8rem;
      }

      .hero-overlay h2 {
        font-size: 1.6rem;
      }
    }

    /* =====================================
       Main content wrapper
       ===================================== */
    main.main-content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem 5vw 0;
    }

    main.main-content h1,
    main.main-content h2 {
      font-family: 'Bitter', serif;
    }

    /* Page title "Flow Image Services" */
    .services-title {
      max-width: 1200px;
      margin: 3rem auto 1.2rem;
      padding: 0 5vw;
    }

    .services-title h1 {
      margin: 0;
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #7d0a29;
    }

 /* =====================================
   Services grid
   ===================================== */
.services-grid {
  width: 100%;
  /* let it go full-width of the viewport area */
  max-width: none;
  margin: 0 auto 3.5rem;
  padding: 0 3vw 0.5rem;   /* a bit less side padding so it feels wider */
  display: grid;
  gap: 1rem;
  /* 3 columns on desktop by default */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 2 columns on tablets */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 column on mobiles */
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Card shell */
.service-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* make inner fill the grid cell */
}

/* Image at top */
.service-card-inner img {
  width: 100%;
  height: 230px;              /* consistent image height */
  object-fit: cover;          /* keep crop neat */
  display: block;
  transition:
    transform 0.5s ease,
    opacity 0.4s ease;
}

/* Soft tint overlay over the image / top area */
.service-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(125, 10, 41, 0.18),
    rgba(125, 10, 41, 0.02)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Card body */
.service-card-body {
  padding: 1.1rem 1.4rem 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 246, 248, 0.98)
  );
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;  /* fill remaining height so buttons align */
}

.service-card-body h3 {
  margin: 0 0 0.4rem;
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f1824;
}

.service-card-body p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #615a67;
}

/* Ensure the “Discover more” button sits nicely at the bottom if present */
.service-card-body .button {
  margin-top: 0.7rem;
}

/* Hover effects */
.service-card:hover .service-card-inner {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.service-card:hover .service-card-inner img {
  transform: scale(1.05);
  opacity: 0.92;
}

.service-card:hover .service-card-inner::before {
  opacity: 1;
}

/* Slightly shorter images on small screens */
@media (max-width: 700px) {
  .service-card-inner img {
    height: 210px;
  }
}






    /* =====================================
       Buttons (for "Discover more" + Mailchimp)
       ===================================== */
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #b3547a, #e4938a);
      color: #ffffff !important;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none !important;
      box-shadow: 0 6px 18px rgba(179, 84, 122, 0.35);
      cursor: pointer;
      white-space: nowrap;
      transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
    }

    .button::before {
      content: "";
    }

    .button:hover,
    .button:focus {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(179, 84, 122, 0.45);
    }

    .button:active {
      transform: translateY(0);
      box-shadow: 0 4px 14px rgba(179, 84, 122, 0.35) inset;
    }

    /* =====================================
       Newsletter (Mailchimp)
       ===================================== */
    .newsletter {
      width: 100%;
      background: linear-gradient(115deg, #2f1d1d, #7c0128);
      color: #ffffff;
      padding: 3rem 5vw;
    }

    .newsletter-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .newsletter-inner h2 {
      margin-top: 0;
      font-family: 'Bitter', serif;
      font-size: 1.4rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #ffffff;
    }

    #mc_embed_signup {
      background: transparent;
      font: 16px Rubik, Arial, sans-serif;
      padding: 0;
    }

    .mailchimp-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .mailchimp-field {
      flex: 1 1 180px;
    }

    .mailchimp-submit {
      flex: 0 0 auto;
      align-self: center;
    }

    #mc_embed_signup .mc-field-group input {
      border-radius: 999px !important;
      border: none;
      padding: 0.6rem 1.1rem !important;
      font-size: 0.9rem;
      outline: none;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      color: #3a283d;
    }

    #mc_embed_signup .mc-field-group input::placeholder {
      color: #a58fa6;
    }

    @media (max-width: 768px) {
      .mailchimp-row {
        flex-direction: column;
      }

      .mailchimp-submit {
        width: 100%;
      }

      .mailchimp-submit .button {
        width: 100%;
        justify-content: center;
      }
    }

    /* =====================================
       Footer
       ===================================== */
    footer.site-footer {
      background: #111015;
      color: #ded8e0;
      padding: 3rem 5vw 2.5rem;
      font-size: 0.9rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-inner h3 {
      margin-top: 0;
      font-family: 'Bitter', serif;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #ffffff;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-column {
      flex: 1 1 260px;
    }

    .footer-links-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 0.2rem 0.8rem;
      margin: 0.5rem 0 0.8rem;
    }

    .footer-links-inline a {
      color: #f1e5f6;
    }

    .footer a {
      color: #f1e5f6;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer-logos img {
      max-width: 180px;
      margin-bottom: 0.8rem;
    }

    .footer-bottom {
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1rem;
    }

    .footer-bottom p {
      margin: 0.2rem 0;
    }

    .footer-social {
      margin: 0.6rem 0 0;
    }

    .footer-social span {
      margin-right: 0.4rem;
      display: inline-block;
    }

    @media (max-width: 768px) {
      .footer-columns {
        flex-direction: column;
      }
    }


/* Inner pages: content layout */

.page-section {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 5vw;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.content-main {
  flex: 2 1 260px;
}

.content-side {
  flex: 1 1 260px;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
}

/* Testimonial styling (for About + Reviews) */

.testimonial {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.9rem 1rem 0.9rem 1.6rem;
  margin: 0.6rem 0 1.4rem;
  background-color: #f9f4f6;
  border-left: 4px solid #b3547a;
  color: #333;
  position: relative;
}

.testimonial::before {
  content: "“";
  font-size: 2.4rem;
  color: #e0b2c5;
  position: absolute;
  left: 0.3rem;
  top: -0.6rem;
}

.testimonial em {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-weight: 600;
  color: #7d0a29;
}

/* Fix big gaps between newsletter fields on mobile */

/* Tighten Mailchimp's default spacing */
#mc_embed_signup .mc-field-group {
  margin: 0.4rem 0;        /* was ~1em from Mailchimp */
}

/* Our wrapper flex items shouldn't add extra margin */
.mailchimp-field,
.mailchimp-submit {
  margin: 0;
}

/* On small screens, stack fields with small gaps */
@media (max-width: 768px) {
  .mailchimp-row {
    flex-direction: column;
    gap: 0.35rem;          /* small, consistent gap between fields */
    margin-top: 0.8rem;
  }

  #mc_embed_signup .mc-field-group {
    margin: 0.2rem 0;      /* even tighter so it doesn’t look “gappy” */
  }
}

/* ---------------------------------
   Newsletter spacing hard override
   --------------------------------- */

/* General: keep things tight even on desktop */
#mc_embed_signup .mc-field-group {
  margin: 0 !important;
  padding: 0 !important;
}

#mc_embed_signup .mc-field-group input {
  margin: 0 !important;
}

/* Our flex items shouldn’t add extra gaps */
.mailchimp-field,
.mailchimp-submit {
  margin: 0 !important;
  padding: 0 !important;
}

/* MOBILE: really tighten vertical spacing */
@media (max-width: 768px) {
  .mailchimp-row {
    flex-direction: column;
    gap: 0.01rem !important;      /* tiny but visible gap */
    margin-top: 0.4rem !important;
  }

  #mc_embed_signup .mc-field-group {
    margin: 0 !important;
    padding: 0 !important;
  }

  #mc_embed_signup .mc-field-group input {
    width: 100%;
    display: block;
  }

  /* Remove any stray margin under the whole form */
  #mc_embed_signup_scroll {
    margin: 0 !important;
    padding: 0 !important;
  }
}


/* ================================
   Newsletter layout & spacing
   ================================ */

/* Base layout: fields in a row where space allows */
.newsletter-inner #mc_embed_signup_scroll.mailchimp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;                 /* horizontal gap on desktop */
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

/* Each field wrapper */
.newsletter-inner .mc-field-group.mailchimp-field {
  margin: 0;
  padding: 0;
  flex: 1 1 220px;              /* grows, min width ~220px */
}

/* Submit button wrapper */
.newsletter-inner .mailchimp-submit {
  flex: 0 0 auto;
}

/* Actual inputs: remove any default margins */
/* Style only text / email / phone inputs */
.newsletter-inner .mc-field-group.mailchimp-field input[type="email"],
.newsletter-inner .mc-field-group.mailchimp-field input[type="text"],
.newsletter-inner .mc-field-group.mailchimp-field input[type="tel"] {
  width: 100%;
  margin: 0;
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  box-sizing: border-box;
}

/* Ensure the subscribe button keeps the pill / gradient style */
.newsletter-inner .mailchimp-submit .button {
  width: auto;
  padding-inline: 1.5rem;
}


/* Make sure Mailchimp's own margins don't creep back in */
#mc_embed_signup .mc-field-group {
  margin: 0 !important;
}

/* MOBILE: stack everything with tiny gaps */
@media (max-width: 768px) {
  .newsletter-inner #mc_embed_signup_scroll.mailchimp-row {
    flex-direction: column;
    gap: 0.3rem;                /* <--- THIS CONTROLS THE VERTICAL GAP */
  }

  .newsletter-inner .mc-field-group.mailchimp-field {
    flex: 1 1 auto;
  }

  .newsletter-inner .mailchimp-submit .button {
    width: 100%;
    justify-content: center;
  }
}

/* Make sure the Subscribe button looks like our main CTA,
   not like a text input field */

#mc_embed_signup .mailchimp-submit input[type="submit"],
#mc_embed_signup #mc-embedded-subscribe.button {
  all: unset;  /* wipe out any input-like styles */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b3547a, #e4938a);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(179, 84, 122, 0.35);
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Hover / active states */
#mc_embed_signup .mailchimp-submit input[type="submit"]:hover,
#mc_embed_signup .mailchimp-submit input[type="submit"]:focus {
  box-shadow: 0 10px 26px rgba(179, 84, 122, 0.45);
  transform: translateY(-1px);
}

#mc_embed_signup .mailchimp-submit input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(179, 84, 122, 0.35) inset;
}

/* Full-width button on mobile if you like */
@media (max-width: 768px) {
  #mc_embed_signup .mailchimp-submit input[type="submit"] {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile-only readability boost for hero text */
@media (max-width: 768px) {
  .hero-overlay {
    /* Slightly darken behind text, but keep image visible */
    background: radial-gradient(
      circle at top left,
      rgba(0, 0, 0, 0.22) 0,
      rgba(0, 0, 0, 0.22) 40%,
      rgba(0, 0, 0, 0.08) 100%
    );
  }

  .hero-overlay h2,
  .hero-overlay p {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  }
}

/* Inline contact icons (phone, WhatsApp, Messenger, etc.) */
.nagyon img[alt=""],
.nagyon img[src*="phone"],
.nagyon img[src*="whatsapp"],
.nagyon img[src*="messenger"] {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  display: inline-block;
}

/* Standard inline icon styling (for phone, messenger, whatsapp, etc.) */
.icon {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  display: inline-block;
  object-fit: contain;
}

/* Recommended partners grid (Contact page) */
.recommend-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1rem;
}

.recommend-card {
  flex: 1 1 150px;
  max-width: 210px;
  text-decoration: none;
  color: inherit;
}

.recommend-card-inner {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.75rem 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recommend-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.recommend-logo {
  max-width: 140px;
  margin: 0 auto 0.6rem;
}

.recommend-card-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a3d4d;
}

/* Stack nicely on small screens */
@media (max-width: 700px) {
  .recommend-grid {
    justify-content: center;
  }
  .recommend-card {
    max-width: 260px;
  }
}


/* =====================================
   Colour swatch cards
   ===================================== */

.swatch-grid {
  max-width: 1200px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
}

.swatch-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.4rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.swatch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.swatch-title {
  margin: 0 0 0.75rem;
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7d0a29;
}

.swatch-image {
  max-width: 160px;
  margin: 0 auto 0.7rem;
  border-radius: 0.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.swatch-label {
  margin: 0 0 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.swatch-links {
  margin: 0;
  font-size: 0.9rem;
}

.swatch-links a {
  color: #7d0a29;
}

.swatch-links a:hover {
  text-decoration: underline;
}

/* PDF icon small & inline */
.pdf-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  display: inline-block;
}

