/* =========================
   Creaciones Nerys
   Website Design System
   ========================= */

:root {
  /* Creaciones Nerys app palette */
  --nerys-turquoise: #39D1E1;
  --nerys-teal: #237F88;
  --nerys-turquoise-soft: #BDEFF3;
  --nerys-aqua: #EAFBFD;

  --nerys-cream: #FFFFFF;
  --surface-soft: #F6F7F8;
  --white: #FFFFFF;

  --text-main: #202124;
  --text-muted: #5F6368;

  /* Small supporting accent from the character/logo */
  --nerys-pink: #F3A8BB;
  --nerys-blush: #FFF4F7;

  --shadow-soft: 0 20px 50px rgba(32, 33, 36, 0.10);
  --shadow-card: 0 12px 28px rgba(32, 33, 36, 0.08);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --page-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text-main);
  background: var(--nerys-cream);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
  color: var(--nerys-teal);
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h1 span {
  display: block;
  color: var(--nerys-turquoise);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 800;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 111, 120, 0.08);
}

.nav-shell,
.section-shell,
.hero-shell,
.quote-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: var(--nerys-teal);
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(135deg, var(--nerys-turquoise), #8FE6ED 64%, #DDF8FA);
  box-shadow: 0 10px 22px rgba(57, 209, 225, 0.24);
}

/* Real Creaciones Nerys header logo */

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: var(--nerys-teal);
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.main-nav a:hover {
  color: var(--nerys-teal);
}

.main-nav .nav-cta {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--nerys-turquoise);
  color: #123A3E;
  box-shadow: 0 8px 18px rgba(57, 209, 225, 0.2);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--nerys-teal);
}

.hero,
.section-white,
.section-blush,
.section-aqua,
.quote-section {
  padding: 96px 0;
}

.section-white {
  background: var(--nerys-cream);
}

.section-aqua {
  background:
    radial-gradient(circle at 10% 6%, rgba(255,255,255,.96), transparent 26%),
    linear-gradient(180deg, #F7FEFF 0%, var(--nerys-aqua) 100%);
}

.section-blush {
  background:
    radial-gradient(circle at 92% 8%, rgba(255,255,255,.96), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, var(--surface-soft) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  left: -100px;
  top: 80px;
  background: rgba(57, 209, 225, 0.16);
}

.hero::after {
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: 10px;
  background: rgba(217, 111, 138, 0.16);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--nerys-teal);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 111, 120, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--nerys-turquoise);
  color: #153D42;
  box-shadow: 0 12px 28px rgba(57, 209, 225, 0.26);
}

.button-secondary {
  color: var(--nerys-teal);
  border: 1.5px solid rgba(31, 111, 120, 0.28);
  background: rgba(255,255,255,.7);
}

.button-light {
  background: var(--white);
  color: var(--nerys-teal);
  white-space: nowrap;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: var(--nerys-teal);
  background: rgba(255,255,255,.7);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.photo-placeholder {
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(57,209,225,.30), rgba(255,241,244,.94)),
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.95), transparent 22%);
  border: 1px solid rgba(31,111,120,.08);
}

.photo-placeholder-hero {
  min-height: 580px;
  position: relative;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.photo-placeholder-copy {
  max-width: 280px;
  padding: 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.photo-placeholder-copy strong,
.photo-placeholder-copy span {
  display: block;
}

.photo-placeholder-copy strong {
  margin-bottom: 8px;
  color: var(--nerys-teal);
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
}

.photo-placeholder-copy span {
  color: var(--text-muted);
  font-size: .9rem;
}

.sparkle {
  position: absolute;
  color: var(--nerys-pink);
  font-size: 2rem;
}

.sparkle-one {
  top: 44px;
  right: 52px;
}

.sparkle-two {
  left: 52px;
  bottom: 70px;
  color: var(--nerys-turquoise);
}

.floating-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: min(300px, 82%);
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-card);
}

/* =========================
   Hero Event Photo
   ========================= */

.hero-photo {
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 111, 120, 0.08);
  box-shadow: var(--shadow-soft);
  background: var(--nerys-aqua);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;

  /* Makes the photo completely fill the hero card */
  object-fit: cover;

  /* Controls which part of the picture remains visible */
  object-position: center;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--nerys-teal);
  font-family: "Lato", sans-serif;
}

.floating-card span {
  margin-top: 3px;
  font-size: .86rem;
  color: var(--text-muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31, 111, 120, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(38, 50, 56, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--nerys-teal);
  background: linear-gradient(135deg, var(--nerys-aqua), var(--nerys-blush));
  font-size: 1.25rem;
  font-weight: 900;
}

.service-card p {
  flex: 1;
  font-size: .96rem;
}

.service-card a {
  text-decoration: none;
  color: var(--nerys-teal);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 18px;
}

.gallery-card .photo-placeholder {
  min-height: 330px;
}

.gallery-card-large .photo-placeholder {
  min-height: 450px;
}

.photo-placeholder span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.8);
  color: var(--nerys-teal);
  font-weight: 800;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,111,120,.08);
}

.why-card > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--nerys-pink);
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .12em;
}

.quote-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.15), transparent 26%),
    linear-gradient(135deg, #237F88 0%, #39D1E1 100%);
  color: var(--white);
}

.quote-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.quote-shell h2,
.quote-shell p {
  color: var(--white);
}

.quote-shell p {
  margin-bottom: 0;
  opacity: .88;
}

.eyebrow-light {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.12);
}

.site-footer {
  background: var(--surface-soft);
}

.footer-shell {
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.brand-mark-small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.footer-brand strong {
  color: var(--nerys-teal);
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 5px 0 0;
  font-size: .9rem;
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-contact a,
.footer-social a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--nerys-teal);
}

.footer-bottom {
  padding: 22px 20px;
  text-align: center;
  border-top: 1px solid rgba(31,111,120,.08);
  color: var(--text-muted);
  font-size: .86rem;
}

/* =========================
   Tablet
   ========================= */

@media (max-width: 980px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .photo-placeholder-hero {
    min-height: 500px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card-large {
    grid-column: 1 / -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 720px) {
  .hero-photo {
  height: 430px;
}
  .nav-shell,
  .section-shell,
  .hero-shell,
  .quote-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .site-header {
    background: rgba(255,253,251,.95);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31,111,120,.08);
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .main-nav a,
  .main-nav a:not(.nav-cta) {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .main-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .section-white,
  .section-blush,
  .section-aqua,
  .quote-section {
    padding: 64px 0;
  }

  .hero-shell {
    gap: 36px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-pills {
    gap: 8px;
  }

  .photo-placeholder-hero {
    min-height: 420px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -28px auto 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading .eyebrow {
    margin-bottom: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-column: auto;
  }

  .gallery-card .photo-placeholder,
  .gallery-card-large .photo-placeholder {
    min-height: 300px;
  }

  .quote-shell {
    display: grid;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-social {
    padding-top: 8px;
  }
}

/* =========================================================
   CREACIONES NERYS — PREMIUM SERVICE CARDS
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}


/* Individual service card */

.service-card-featured {
  position: relative;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid rgba(35, 127, 136, 0.10);
  border-radius: 26px;

  box-shadow:
    0 16px 40px rgba(32, 33, 36, 0.08);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}


/* Lift slightly when hovering */

.service-card-featured:hover {
  transform: translateY(-6px);

  border-color: rgba(57, 209, 225, 0.28);

  box-shadow:
    0 24px 55px rgba(32, 33, 36, 0.13);
}


/* =========================================================
   SERVICE PHOTO
   ========================================================= */

.service-image {
  position: relative;

  width: 100%;
  height: 310px;

  overflow: hidden;

  background: var(--nerys-aqua);
}


.service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.45s ease;
}


/* Gentle photo zoom */

.service-card-featured:hover .service-image img {
  transform: scale(1.035);
}


/* Small numbered badge */

.service-number {
  position: absolute;

  top: 18px;
  right: 18px;

  min-width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);

  color: var(--nerys-teal);

  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 900;

  box-shadow: 0 8px 22px rgba(32, 33, 36, 0.11);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   SERVICE TEXT
   ========================================================= */

.service-card-content {
  padding: 26px 28px 30px;
}


.service-label {
  display: inline-block;

  margin-bottom: 9px;

  color: var(--nerys-turquoise);

  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.10em;
  text-transform: uppercase;
}


.service-card-content h3 {
  margin: 0 0 12px;

  color: var(--nerys-teal);

  font-family: "Lato", sans-serif;

  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;

  font-weight: 900;
}


.service-card-content p {
  margin: 0;

  color: var(--text-muted);

  font-family: "Roboto", sans-serif;

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   SERVICE LINK
   ========================================================= */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 22px;

  color: var(--nerys-teal);

  text-decoration: none;

  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 900;

  transition:
    color 0.2s ease,
    gap 0.2s ease;
}


.service-link span {
  color: var(--nerys-turquoise);

  font-size: 20px;
  line-height: 1;
}


.service-link:hover {
  color: var(--nerys-turquoise);
  gap: 14px;
}


/* =========================================================
   FIFTH CARD — FEATURED WIDTH
   Makes Custom Products feel intentional rather than orphaned
   ========================================================= */

.service-card-featured:nth-child(7) {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}


.service-card-featured:nth-child(7) .service-image {
  height: 100%;
  min-height: 350px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .service-card-featured:nth-child(7) {
    grid-column: auto;

    display: block;
  }


  .service-card-featured:nth-child(7) .service-image {
    height: 310px;
    min-height: 0;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .service-grid {
    margin-top: 30px;
    gap: 20px;
  }


  .service-card-featured {
    border-radius: 22px;
  }


  .service-image,
  .service-card-featured:nth-child(7) .service-image {
    height: 245px;
  }


  .service-card-content {
    padding: 22px 21px 25px;
  }


  .service-card-content h3 {
    font-size: 27px;
  }


  .service-card-content p {
    font-size: 15px;
    line-height: 1.65;
  }


  .service-number {
    top: 14px;
    right: 14px;

    min-width: 40px;
    height: 40px;
  }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .service-card-featured,
  .service-image img,
  .service-link {
    transition: none;
  }


  .service-card-featured:hover,
  .service-card-featured:hover .service-image img {
    transform: none;
  }

}

/* =========================================================
   SERVICE FLYERS
   Show the entire promotional artwork instead of cropping it
   ========================================================= */

.service-image-flyer {
  padding: 16px;
  background: #fffdf9;
}

.service-image-flyer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
}

/* =========================================================
   CREACIONES NERYS — EDITORIAL PHOTO GALLERY
   ========================================================= */

.gallery-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}


.gallery-heading h2 {
  margin: 8px 0 14px;

  color: var(--nerys-teal);

  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
}


.gallery-heading p {
  max-width: 680px;
  margin: 0 auto;

  color: var(--text-muted);

  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   MOSAIC GRID
   ========================================================= */

.gallery-mosaic {
  display: grid;

  grid-template-columns: repeat(12, minmax(0, 1fr));

  grid-auto-rows: 190px;

  gap: 18px;
}


/* Every photo */

.gallery-tile {
  position: relative;

  margin: 0;

  overflow: hidden;

  border-radius: 24px;

  background: #eafafd;

  box-shadow:
    0 16px 40px rgba(31, 111, 120, 0.09);
}


/* Individual shapes */

.gallery-tile-main {
  grid-column: span 7;
  grid-row: span 3;
}


.gallery-tile-wide {
  grid-column: span 5;
  grid-row: span 2;
}


.gallery-tile-small {
  grid-column: span 5;
  grid-row: span 2;
}


.gallery-tile-tall {
  grid-column: span 4;
  grid-row: span 3;
}


/* =========================================================
   IMAGE
   ========================================================= */

.gallery-tile img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}


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


/* =========================================================
   PHOTO OVERLAY
   ========================================================= */

.gallery-tile::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(13, 57, 62, 0.72) 0%,
      rgba(13, 57, 62, 0.15) 48%,
      rgba(13, 57, 62, 0) 72%
    );

  pointer-events: none;
}


/* =========================================================
   PHOTO LABEL
   ========================================================= */

.gallery-caption {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 22px;

  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 4px;

  color: white;

  transform: translateY(5px);

  transition: transform 0.3s ease;
}


.gallery-tile:hover .gallery-caption {
  transform: translateY(0);
}


.gallery-caption span {
  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #baf5f8;
}


.gallery-caption strong {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }


  .gallery-tile-main,
  .gallery-tile-wide,
  .gallery-tile-small,
  .gallery-tile-tall {
    grid-column: span 1;
    grid-row: span 1;
  }


  .gallery-tile-main {
    grid-column: 1 / -1;
    height: 420px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .gallery-heading {
    margin-bottom: 30px;
  }


  .gallery-heading h2 {
    font-size: 34px;
  }


  .gallery-heading p {
    font-size: 15px;
    line-height: 1.65;
  }


  .gallery-mosaic {
    display: flex;
    flex-direction: column;

    gap: 16px;
  }


  .gallery-tile,
  .gallery-tile-main {
    width: 100%;
    height: 310px;

    border-radius: 20px;
  }


  .gallery-tile-tall {
    height: 390px;
  }


  .gallery-caption {
    left: 19px;
    right: 19px;
    bottom: 18px;
  }


  .gallery-caption strong {
    font-size: 18px;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gallery-tile img,
  .gallery-caption {
    transition: none;
  }


  .gallery-tile:hover img {
    transform: none;
  }

}

/* =========================================================
   GALLERY MOSAIC — FINAL DESKTOP PLACEMENT
   Removes empty gaps and balances each photo shape
   ========================================================= */

.gallery-mosaic {
  display: grid;

  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(5, 190px);

  gap: 18px;
}


/* 01 — Large Balloon Feature */

.gallery-tile:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
}


/* 02 — Blue Birthday */

.gallery-tile:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}


/* 03 — Backdrop */

.gallery-tile:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 3 / 4;
}


/* 04 — Mechanical Bull
   Wider because this is a landscape photo */

.gallery-tile:nth-child(4) {
  grid-column: 1 / 6;
  grid-row: 4 / 6;
}


/* 05 — Custom Products
   Narrower works well with the portrait photograph */

.gallery-tile:nth-child(5) {
  grid-column: 6 / 9;
  grid-row: 4 / 6;
}


/* 06 — Celebration */

.gallery-tile:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 4 / 6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
  }


  .gallery-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;

    height: 320px;
  }


  .gallery-tile:nth-child(1) {
    grid-column: 1 / -1;

    height: 430px;
  }


  .gallery-tile:nth-child(5) {
    height: 390px;
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 620px) {

  .gallery-mosaic {
    display: flex;
    flex-direction: column;

    gap: 16px;
  }


  .gallery-tile:nth-child(n) {
    width: 100%;
    height: 300px;
  }


  .gallery-tile:nth-child(1) {
    height: 350px;
  }


  .gallery-tile:nth-child(5) {
    height: 390px;
  }

}

/* =========================================================
   WHY CREACIONES NERYS
   ========================================================= */

.why-section {
  position: relative;

  padding: 100px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(57, 209, 225, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(255, 166, 184, 0.20),
      transparent 30%
    ),
    #f7fdfe;
}


.why-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  align-items: center;

  gap: 80px;
}


/* =========================================================
   CHARACTER SIDE
   ========================================================= */

.why-visual {
  position: relative;
}


.why-character-card {
  position: relative;

  min-height: 610px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      #dff9fc 0%,
      #f8ffff 55%,
      #fff0f4 100%
    );

  border: 1px solid rgba(31, 111, 120, 0.08);

  box-shadow:
    0 28px 70px rgba(31, 111, 120, 0.12);
}


.why-character {
  position: relative;
  z-index: 2;

  width: 90%;
  max-height: 570px;

  object-fit: contain;

  transform: translateY(14px);
}


/* Decorative bubbles */

.why-decoration {
  position: absolute;

  border-radius: 50%;

  background: rgba(57, 209, 225, 0.16);

  filter: blur(1px);
}


.why-decoration-one {
  width: 180px;
  height: 180px;

  top: -55px;
  left: -45px;
}


.why-decoration-two {
  width: 115px;
  height: 115px;

  right: -25px;
  bottom: 80px;

  background: rgba(255, 160, 181, 0.20);
}


/* Floating note */

.why-floating-note {
  position: absolute;

  z-index: 3;

  left: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  padding: 16px 20px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.91);

  box-shadow:
    0 14px 32px rgba(32, 33, 36, 0.11);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.why-floating-note span {
  color: var(--nerys-turquoise);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.10em;
  text-transform: uppercase;
}


.why-floating-note strong {
  color: var(--nerys-teal);

  font-size: 15px;
}


/* =========================================================
   TEXT SIDE
   ========================================================= */

.why-content h2 {
  max-width: 650px;

  margin: 10px 0 22px;

  color: var(--nerys-teal);

  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;

  font-weight: 900;
}


.why-content h2 span {
  color: var(--nerys-turquoise);
}


.why-intro {
  max-width: 650px;

  margin: 0 0 34px;

  color: var(--text-muted);

  font-size: 18px;
  line-height: 1.75;
}


/* =========================================================
   BENEFIT CARDS
   ========================================================= */

.why-benefits {
  display: flex;
  flex-direction: column;

  gap: 14px;

  margin-bottom: 34px;
}


.why-benefit {
  display: grid;

  grid-template-columns: 54px 1fr;

  gap: 18px;

  align-items: start;

  padding: 20px 22px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(31, 111, 120, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.why-benefit:hover {
  transform: translateX(6px);

  box-shadow:
    0 12px 30px rgba(31, 111, 120, 0.09);
}


.why-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #ddf9fb;

  color: var(--nerys-teal);

  font-size: 21px;
  font-weight: 900;
}


.why-benefit:nth-child(2) .why-icon {
  background: #fff0f4;

  color: #dc7188;
}


.why-benefit:nth-child(3) .why-icon {
  background: #effafa;
}


.why-benefit h3 {
  margin: 1px 0 5px;

  color: var(--nerys-teal);

  font-size: 20px;
  font-weight: 900;
}


.why-benefit p {
  margin: 0;

  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.6;
}


.why-button {
  display: inline-flex;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .why-layout {
    grid-template-columns: 1fr;

    gap: 54px;
  }


  .why-character-card {
    min-height: 520px;
  }


  .why-character {
    max-height: 500px;
    width: 70%;
  }


  .why-content {
    max-width: 760px;

    margin: 0 auto;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .why-section {
    padding: 68px 0;
  }


  .why-layout {
    gap: 38px;
  }


  .why-character-card {
    min-height: 390px;

    border-radius: 26px;
  }


  .why-character {
    width: 95%;
    max-height: 385px;
  }


  .why-floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }


  .why-content h2 {
    font-size: 39px;
  }


  .why-intro {
    font-size: 16px;
  }


  .why-benefit {
    grid-template-columns: 46px 1fr;

    gap: 14px;

    padding: 18px;
  }


  .why-icon {
    width: 43px;
    height: 43px;
  }


  .why-benefit h3 {
    font-size: 18px;
  }


  .why-benefit p {
    font-size: 14px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .why-benefit {
    transition: none;
  }


  .why-benefit:hover {
    transform: none;
  }

}

/* =========================================================
   REQUEST A QUOTE / CONTACT
   ========================================================= */

.contact-section {
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 160, 181, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(57, 209, 225, 0.17),
      transparent 30%
    ),
    #ffffff;
}


.contact-card {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  gap: 70px;

  align-items: center;

  padding: 68px;

  border-radius: 38px;

  background:
    linear-gradient(
      135deg,
      #f2fdfe 0%,
      #ffffff 48%,
      #fff3f6 100%
    );

  border: 1px solid rgba(31, 111, 120, 0.08);

  box-shadow:
    0 30px 80px rgba(31, 111, 120, 0.12);
}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

.contact-content h2 {
  max-width: 680px;

  margin: 10px 0 22px;

  color: var(--nerys-teal);

  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;

  font-weight: 900;
}


.contact-content h2 span {
  color: var(--nerys-turquoise);
}


.contact-intro {
  max-width: 650px;

  margin: 0;

  color: var(--text-muted);

  font-size: 18px;
  line-height: 1.75;
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.contact-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}


.contact-primary {
  display: inline-flex;
}


.contact-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 999px;

  background: #ffffff;

  color: var(--nerys-teal);

  border: 1px solid rgba(31, 111, 120, 0.20);

  text-decoration: none;

  font-weight: 900;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.contact-secondary:hover {
  transform: translateY(-2px);

  border-color: var(--nerys-turquoise);

  box-shadow:
    0 10px 25px rgba(31, 111, 120, 0.10);
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-details {
  display: grid;

  gap: 14px;

  margin-top: 38px;
}


.contact-detail {
  display: grid;

  grid-template-columns: 46px 1fr;

  gap: 14px;

  align-items: center;
}


.contact-detail-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #ddf9fb;

  color: var(--nerys-teal);

  font-size: 18px;
  font-weight: 900;
}


.contact-detail:nth-child(2) .contact-detail-icon {
  background: #fff0f4;

  color: #dd748a;
}


.contact-detail small {
  display: block;

  margin-bottom: 2px;

  color: var(--text-muted);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.contact-detail a,
.contact-detail strong {
  color: var(--nerys-teal);

  font-size: 15px;
  font-weight: 900;

  text-decoration: none;
}


.contact-detail a:hover {
  color: var(--nerys-turquoise);
}


/* =========================================================
   PHONE CHARACTER
   ========================================================= */

.contact-character-card {
  position: relative;

  min-height: 600px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;

  border-radius: 32px;

  background:
    linear-gradient(
      155deg,
      #dffafd,
      #ffffff 55%,
      #ffeef3
    );

  border: 1px solid rgba(31, 111, 120, 0.08);
}


.contact-character {
  position: relative;

  z-index: 2;

  width: 88%;
  max-height: 570px;

  object-fit: contain;

  transform: translateY(12px);
}


/* Decorative circles */

.contact-circle {
  position: absolute;

  border-radius: 50%;
}


.contact-circle-one {
  width: 190px;
  height: 190px;

  top: -50px;
  right: -45px;

  background: rgba(57, 209, 225, 0.18);
}


.contact-circle-two {
  width: 135px;
  height: 135px;

  left: -30px;
  bottom: 75px;

  background: rgba(255, 160, 181, 0.20);
}


/* Floating message */

.contact-floating-message {
  position: absolute;

  z-index: 4;

  right: 20px;
  bottom: 22px;

  padding: 16px 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.93);

  box-shadow:
    0 14px 35px rgba(32, 33, 36, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.contact-floating-message span {
  display: block;

  color: var(--text-muted);

  font-size: 12px;
}


.contact-floating-message strong {
  display: block;

  margin-top: 2px;

  color: var(--nerys-teal);

  font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .contact-card {
    grid-template-columns: 1fr;

    padding: 50px;

    gap: 48px;
  }


  .contact-character-card {
    min-height: 520px;
  }


  .contact-character {
    width: 70%;
    max-height: 500px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .contact-section {
    padding: 68px 0;
  }


  .contact-card {
    padding: 27px 20px 20px;

    border-radius: 27px;

    gap: 38px;
  }


  .contact-content h2 {
    font-size: 39px;
  }


  .contact-intro {
    font-size: 16px;
  }


  .contact-actions {
    flex-direction: column;
  }


  .contact-actions a {
    width: 100%;

    box-sizing: border-box;

    justify-content: center;
  }


  .contact-character-card {
    min-height: 420px;

    border-radius: 24px;
  }


  .contact-character {
    width: 96%;
    max-height: 410px;
  }


  .contact-floating-message {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

}

/* =========================================================
   CREACIONES NERYS — FOOTER
   ========================================================= */

.site-footer {
  padding: 72px 0 30px;

  background: #173f44;

  color: #ffffff;
}


.footer-main {
  display: grid;

  grid-template-columns: 1.5fr 0.7fr 1fr 0.8fr;

  gap: 52px;

  padding-bottom: 54px;
}


/* Brand */

.footer-brand {
  display: flex;

  align-items: flex-start;

  gap: 16px;
}


.footer-logo {
  width: 62px;
  height: 62px;

  object-fit: contain;

  flex-shrink: 0;
}


.footer-brand strong {
  display: block;

  margin-top: 4px;

  color: #ffffff;

  font-size: 20px;
  font-weight: 900;
}


.footer-brand p {
  max-width: 260px;

  margin: 7px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.6;
}


/* Columns */

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}


.footer-column > span {
  margin-bottom: 7px;

  color: #75e4ec;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.10em;
  text-transform: uppercase;
}


.footer-column a {
  color: rgba(255, 255, 255, 0.82);

  text-decoration: none;

  font-size: 14px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-column a:hover {
  color: #75e4ec;

  transform: translateX(3px);
}


.footer-column p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;
  line-height: 1.55;
}


/* Social links */

.footer-socials {
  display: flex;
  flex-direction: column;

  gap: 9px;
}


/* Bottom strip */

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 26px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);
}


.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .footer-main {
    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .site-footer {
    padding-top: 52px;
  }


  .footer-main {
    grid-template-columns: 1fr;

    gap: 34px;

    padding-bottom: 38px;
  }


  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
  }

}

/* =========================================================
   CREACIONES NERYS — FINAL MOBILE POLISH
   ========================================================= */

@media (max-width: 620px) {

  /* -----------------------------------------
     GLOBAL
     ----------------------------------------- */

  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  .section-shell {
    width: min(100% - 36px, 1180px);
  }

  section {
    scroll-margin-top: 76px;
  }


  /* -----------------------------------------
     HEADER / BRAND
     ----------------------------------------- */

  .site-header {
    padding: 10px 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }


  /* -----------------------------------------
     HERO
     ----------------------------------------- */

  .hero {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;

    font-size: clamp(48px, 15vw, 68px);
    line-height: 0.96;
  }

  .hero-copy > p {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;

    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-tags {
    justify-content: center;
    gap: 8px;
  }

  .hero-tags span {
    font-size: 11px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-photo {
    height: 430px;
    border-radius: 26px;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;

    width: auto;
  }


  /* -----------------------------------------
     SECTION HEADINGS
     ----------------------------------------- */

  .section-heading,
  .gallery-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading h2,
  .gallery-heading h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-heading p,
  .gallery-heading p {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;

    font-size: 15px;
    line-height: 1.65;
  }


  /* -----------------------------------------
     SERVICES
     ----------------------------------------- */

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .service-card-featured,
  .service-card-featured:nth-child(7) {
    display: block;

    grid-column: auto;

    border-radius: 22px;
  }

  .service-image,
  .service-card-featured:nth-child(7) .service-image {
    height: 245px;
    min-height: 0;
  }

  .service-image-flyer {
    height: 300px;
    padding: 12px;
  }

  .service-card-content {
    padding: 22px 21px 25px;
  }

  .service-card-content h3 {
    font-size: 27px;
  }

  .service-card-content p {
    font-size: 15px;
  }


  /* -----------------------------------------
     GALLERY
     ----------------------------------------- */

  .gallery-mosaic {
    display: flex;
    flex-direction: column;

    gap: 16px;
  }

  .gallery-tile:nth-child(n) {
    width: 100%;
    height: 300px;

    border-radius: 20px;
  }

  .gallery-tile:nth-child(1) {
    height: 380px;
  }

  .gallery-tile:nth-child(5) {
    height: 390px;
  }

  .gallery-caption {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }

  .gallery-caption strong {
    font-size: 18px;
  }


  /* -----------------------------------------
     WHY NERYS
     ----------------------------------------- */

  .why-section {
    padding: 68px 0;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .why-character-card {
    min-height: 390px;
    border-radius: 26px;
  }

  .why-character {
    width: 96%;
    max-height: 385px;
  }

  .why-floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .why-content {
    text-align: left;
  }

  .why-content h2 {
    font-size: 39px;
    line-height: 1.04;
  }

  .why-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .why-benefit {
    grid-template-columns: 46px 1fr;
    gap: 14px;

    padding: 18px;
  }

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


  /* -----------------------------------------
     CONTACT
     ----------------------------------------- */

  .contact-section {
    padding: 68px 0;
  }

  .contact-card {
    display: flex;
    flex-direction: column;

    padding: 28px 20px 20px;

    border-radius: 28px;

    gap: 40px;
  }

  .contact-content h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions a {
    width: 100%;
    box-sizing: border-box;

    justify-content: center;
  }

  .contact-details {
    margin-top: 32px;
  }

  .contact-detail {
    grid-template-columns: 44px 1fr;
  }

  .contact-detail a,
  .contact-detail strong {
    font-size: 14px;
    word-break: break-word;
  }

  .contact-character-card {
    min-height: 420px;

    border-radius: 24px;
  }

  .contact-character {
    width: 96%;
    max-height: 410px;
  }

  .contact-floating-message {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }


  /* -----------------------------------------
     FOOTER
     ----------------------------------------- */

  .site-footer {
    padding-top: 52px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: 54px;
    height: 54px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
  }

}


/* =========================================================
   CREACIONES NERYS — BILINGUAL HOMEPAGE
   ========================================================= */

.site-language-switcher {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid rgba(35, 127, 136, 0.12);
  border-radius: 999px;
  background: #f7ffff;
}

.site-language-button {
  min-width: 40px;
  min-height: 34px;
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.site-language-button.is-active {
  background: var(--nerys-turquoise);
  color: #123a3e;
  box-shadow: 0 5px 14px rgba(57, 209, 225, 0.22);
}

/* New services without a finalized website photo get a branded
   illustration panel instead of a broken image path. */
.service-image-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.94), transparent 28%),
    linear-gradient(145deg, var(--nerys-aqua), #d7f8fb 55%, var(--nerys-blush));
}

.service-image-decor-tables {
  background:
    radial-gradient(circle at 23% 18%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(145deg, #e8fbfd, #fff5f8);
}

.service-image-snack-cart {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.95), transparent 27%),
    linear-gradient(145deg, #fff8ef, #e8fbfd 68%, #fff3f6);
}

.service-placeholder-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background: rgba(255,255,255,.86);
  color: var(--nerys-teal);
  font-size: 54px;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(31,111,120,.11);
}

/* The seventh service card (Custom Products) keeps the intentional
   full-width editorial treatment used by the original fifth card. */
.service-card-featured:nth-child(7) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-card-featured:nth-child(7) .service-image {
  height: 100%;
  min-height: 350px;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
  }

  .site-language-switcher {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .service-card-featured:nth-child(7) {
    grid-column: auto;
    display: block;
  }

  .service-card-featured:nth-child(7) .service-image {
    height: 310px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .main-nav.is-open .site-language-switcher {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 4px 0 8px;
  }

  .site-language-button {
    flex: 1;
    max-width: 110px;
  }

  .service-card-featured:nth-child(7) {
    display: block;
    grid-column: auto;
  }

  .service-card-featured:nth-child(7) .service-image {
    height: 245px;
    min-height: 0;
  }

  .service-placeholder-icon {
    width: 94px;
    height: 94px;
    border-radius: 27px;
    font-size: 46px;
  }
}

.service-card-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.service-image-balloon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   UPDATED PHOTO ASSETS
   ========================================================= */

.hero-photo img,
.service-image img,
.gallery-tile img {
  image-rendering: auto;
}


/* =========================================================
   CUSTOM PRODUCTS + DIGITAL INVITATIONS — SIDE BY SIDE
   Card 07 is no longer full-width, so card 08 sits beside it.
   ========================================================= */

.service-card-featured:nth-child(7) {
  grid-column: auto !important;
  display: block !important;
  grid-template-columns: none !important;
}

.service-card-featured:nth-child(7) .service-image {
  height: 310px !important;
  min-height: 0 !important;
}

/* =========================================================
   CUSTOM PRODUCTS — IMAGE EMPHASIS
   Make card 07 artwork visibly larger without changing
   the size or layout of card 08.
   ========================================================= */

/* Remove the flyer padding only from Custom Products. */
.service-card-featured:nth-child(7) .service-image {
  padding: 0 !important;
  overflow: hidden !important;
  background: #fffdf9;
}

/* Enlarge the artwork inside the same 310px image area. */
.service-card-featured:nth-child(7) .service-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.35) !important;
  transform-origin: center center !important;
}

/* Keep the gentle hover effect, but from the enlarged size. */
.service-card-featured:nth-child(7):hover .service-image img {
  transform: scale(1.39) !important;
}

/* On phones, use a slightly smaller enlargement. */
@media (max-width: 620px) {
  .service-card-featured:nth-child(7) .service-image img,
  .service-card-featured:nth-child(7):hover .service-image img {
    transform: scale(1.22) !important;
  }
}

/* =========================================================
   GUEST QUOTE REASSURANCE
   Makes it clear on the main website that signing in is optional.
   ========================================================= */

.guest-quote-reassurance {
  width: fit-content;
  max-width: 100%;

  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 18px;
  margin-bottom: 0;
  padding: 9px 13px;

  border: 1px solid rgba(57, 209, 225, 0.30);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.74);

  color: var(--nerys-teal);

  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;

  box-shadow: 0 8px 22px rgba(31, 111, 120, 0.07);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.guest-quote-reassurance-icon {
  flex: 0 0 auto;

  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nerys-turquoise);
  color: #123a3e;

  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 620px) {
  .guest-quote-reassurance {
    width: 100%;
    justify-content: center;

    border-radius: 16px;
    text-align: center;

    font-size: 12px;
  }
}

/* Guaranteed breathing room between the guest reassurance and service chips. */
.guest-quote-reassurance + .hero-pills {
  margin-top: 24px;
}

