:root {
  --gn-brown: #3d1a0a;
  --gn-brown-dark: #211711;
  --gn-cream: #f7f1e8;
  --gn-cream-soft: #f4efe9;
  --gn-gold: #e8b978;
  --gn-text: #f6f1eb;
  --gn-ink: #2a1810;
  --gn-max-width: 1410px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--gn-cream-soft);
  color: var(--gn-ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

.gn-container {
  width: min(100%, var(--gn-max-width));
  margin-inline: auto;
  padding-inline: 24px;
}

/* Header */
.gn-header {
  background: var(--gn-cream);
  border-bottom: 1px solid rgba(61, 26, 10, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.gn-header__inner {
  width: min(100%, var(--gn-max-width));
  margin-inline: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gn-header__logo img {
  height: 48px;
  width: auto;
}

.gn-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gn-nav a {
  text-decoration: none;
  color: var(--gn-brown);
  font-size: 16px;
  font-weight: 500;
  transition: color .2s ease;
}

.gn-nav a:hover,
.gn-nav a:focus-visible {
  color: var(--gn-gold);
}

.gn-nav__soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gn-badge-soon {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gn-gold);
  color: var(--gn-brown);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gn-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gn-brown);
  color: var(--gn-cream);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease;
}

.gn-header__cta:hover,
.gn-header__cta:focus-visible {
  background: var(--gn-gold);
  color: var(--gn-brown);
}

.gn-header__cta-short { display: none; }

.gn-header__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--gn-brown);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}

@media (max-width: 900px) {
  .gn-header__inner { gap: 12px; }

  .gn-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--gn-cream);
    border-bottom: 1px solid rgba(61,26,10,.1);
    box-shadow: 0 16px 28px rgba(33,23,17,.14);
    padding: 8px 24px 20px;
    z-index: 60;
  }

  .gn-nav.is-open { display: flex; }

  .gn-nav li { width: 100%; }

  .gn-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid rgba(61,26,10,.08);
  }

  .gn-nav li:last-child a { border-bottom: 0; }

  .gn-nav__soon { justify-content: space-between; width: 100%; }

  .gn-header__toggle { display: block; }
}

@media (max-width: 480px) {
  .gn-header__cta-full { display: none; }
  .gn-header__cta-short { display: inline; }
  .gn-header__cta { padding: 10px 16px; font-size: 14px; }
  .gn-header__logo img { height: 40px; }
}

/* Buttons */
.gn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.gn-btn--primary {
  background: var(--gn-brown);
  color: var(--gn-cream);
}

.gn-btn--primary:hover,
.gn-btn--primary:focus-visible {
  background: var(--gn-gold);
  color: var(--gn-brown);
  transform: translateY(-1px);
}

.gn-btn--ghost {
  background: transparent;
  color: var(--gn-cream);
  border: 1.5px solid var(--gn-cream);
}

.gn-btn--ghost:hover,
.gn-btn--ghost:focus-visible {
  background: var(--gn-cream);
  color: var(--gn-brown);
}

.gn-btn--ghost-brown {
  background: transparent;
  color: var(--gn-brown);
  border: 1.5px solid var(--gn-brown);
}

.gn-btn--ghost-brown:hover,
.gn-btn--ghost-brown:focus-visible {
  background: var(--gn-brown);
  color: var(--gn-cream);
}

.gn-btn--ghost-gold {
  background: transparent;
  color: var(--gn-gold-dark, #a97a34);
  border: 1.5px solid var(--gn-gold);
}

.gn-btn--ghost-gold:hover,
.gn-btn--ghost-gold:focus-visible {
  background: var(--gn-gold);
  color: var(--gn-brown);
}

.gn-btn--whatsapp {
  background: linear-gradient(135deg, #2fbf62 0%, #1fa34e 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(31,163,78,.32);
}

.gn-btn--whatsapp:hover,
.gn-btn--whatsapp:focus-visible {
  background: linear-gradient(135deg, #35cc69 0%, #22b357 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31,163,78,.4);
}

.gn-btn--whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Custom quote section — native HTML/CSS build (real text + vector icons, crisp at any resolution) */
.gn-quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(100deg, #f1ebe5 0%, #f1ebe5 22%, #eee6d8 60%, #ece2ce 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(61,26,10,.08);
}

.gn-quote__content {
  padding: 48px 22px 48px 38px;
  align-self: center;
  position: relative;
  z-index: 1;
}

.gn-quote__eyebrow {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--gn-gold-dark, #a97a34);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.gn-quote__title {
  font-family: 'Young Serif', 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--gn-brown);
  margin: 0 0 16px;
}

.gn-quote__lead {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 18.4px;
  line-height: 1.5;
  color: #4a3a2c;
  margin: 0 0 18px;
}

.gn-quote__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 220px;
}

.gn-quote__divider::before,
.gn-quote__divider::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(61,26,10,.25);
}

.gn-quote__divider span {
  color: var(--gn-gold);
  font-size: 13px;
  flex-shrink: 0;
}

.gn-quote__copy {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 18.1px;
  line-height: 1.6;
  color: #4a3a2c;
  margin: 0 0 24px;
  max-width: 40ch;
}

.gn-quote__features {
  display: flex;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  gap: 4px;
}

.gn-quote__features li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 12.4px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gn-brown);
  text-align: center;
  padding: 0 5px;
}

.gn-quote__feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gn-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.gn-quote__feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gn-gold-dark, #a97a34);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gn-quote__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gn-quote__actions .gn-btn {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 26px;
}

.gn-quote__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 12.5px;
  color: #6b5645;
  margin: 0;
}

.gn-quote__footnote-icon { font-size: 15px; }

.gn-quote__media {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.gn-quote__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%);
  mask-image: linear-gradient(to right, transparent 0%, #000 4%);
}

@media (max-width: 900px) {
  .gn-quote__inner {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .gn-quote__content { padding: 34px 26px; }
  .gn-quote__title { font-size: clamp(30px, 6vw, 42px); }
  .gn-quote__lead { font-size: 16px; }
  .gn-quote__copy { font-size: 15.5px; }
  .gn-quote__media {
    order: -1;
    height: 320px;
    min-height: 0;
  }
  .gn-quote__media img {
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 560px) {
  .gn-quote__content { padding: 28px 20px; }
  .gn-quote__title { font-size: 26px; }
  .gn-quote__features { gap: 0; }
  .gn-quote__features li { font-size: 10.5px; padding: 0 3px; }
  .gn-quote__feature-icon { width: 36px; height: 36px; }
  .gn-quote__feature-icon svg { width: 23px; height: 23px; }
  .gn-quote__media { height: 190px; }
  .gn-quote__actions .gn-btn { padding: 12px 18px; font-size: 11.5px; }
}

/* Hero (full-bleed) */
.gn-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.gn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(33,23,17,.86) 0%, rgba(33,23,17,.62) 45%, rgba(33,23,17,.28) 100%);
}

.gn-hero__content {
  max-width: 620px;
  padding: 90px 0;
}

.gn-hero__eyebrow {
  color: var(--gn-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.gn-hero__title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--gn-cream);
  font-weight: 700;
}

.gn-hero__copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gn-cream);
  opacity: .92;
  margin: 0 0 30px;
  max-width: 50ch;
}

.gn-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gn-hero__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.gn-hero__socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
  transition: transform .2s ease, opacity .2s ease;
}

.gn-hero__socials a:hover,
.gn-hero__socials a:focus-visible {
  transform: translateY(-2px);
  opacity: .8;
  outline: none;
}

.gn-hero__socials-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 560px) {
  .gn-hero__socials { margin-top: 20px; }
  .gn-hero__socials a { width: 28px; height: 28px; }
  .gn-hero__socials-icon { width: 19px; height: 19px; }
}

/* Section shell */
.gn-section {
  padding: 72px 0;
}

.gn-section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.gn-section__eyebrow {
  color: var(--gn-gold-dark, #a97a34);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.gn-section__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 14px;
}

.gn-section__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #6b5645;
  margin: 0;
}

/* Category grid */
.gn-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gn-cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  isolation: isolate;
}

.gn-cat-card__ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  z-index: 2;
  width: 150px;
  padding: 6px 0;
  background: var(--gn-gold);
  color: var(--gn-brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.gn-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(33,23,17,.82) 0%, rgba(33,23,17,.2) 55%, transparent 100%);
}

.gn-cat-card__body {
  padding: 26px 28px;
  color: var(--gn-cream);
}

.gn-cat-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.gn-cat-card__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gn-gold);
  text-decoration: underline;
}

.gn-cat-card--soon {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
  background: var(--gn-brown-dark);
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .gn-categories { grid-template-columns: repeat(2, 1fr); }
  .gn-cat-card--soon { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .gn-categories { grid-template-columns: 1fr; }
  .gn-cat-card { aspect-ratio: 4 / 3; }
  .gn-cat-card--soon { aspect-ratio: 2 / 1; background-position: left center; }
}

/* Why choose us */
.gn-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.gn-feature {
  text-align: center;
}

.gn-feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gn-cream);
  border: 1px solid rgba(61,26,10,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gn-brown);
  font-size: 22px;
}

.gn-feature__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 8px;
}

.gn-feature__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #6b5645;
  margin: 0;
}

@media (max-width: 900px) {
  .gn-features { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* FAQ */
.gn-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
}

.gn-faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 8px;
}

.gn-faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b5645;
  margin: 0;
}

@media (max-width: 760px) {
  .gn-faq-grid { grid-template-columns: 1fr; }
}

/* Consultation */
.gn-consult {
  background: var(--gn-cream);
}

.gn-consult__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gn-consult__title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 14px;
}

.gn-consult__copy {
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b5645;
  margin: 0 0 26px;
  max-width: 48ch;
}

.gn-field {
  margin-bottom: 18px;
}

.gn-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gn-brown);
  margin-bottom: 6px;
}

.gn-field input,
.gn-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(61,26,10,.2);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--gn-ink);
}

.gn-field textarea { resize: vertical; min-height: 100px; }

.gn-consult__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

@media (max-width: 860px) {
  .gn-consult__grid { grid-template-columns: 1fr; }
  .gn-consult__image { order: -1; }
}

/* Placeholder / coming-soon pages */
.gn-placeholder {
  padding: 110px 0 130px;
  text-align: center;
}

.gn-placeholder__eyebrow {
  color: var(--gn-gold-dark, #a97a34);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.gn-placeholder__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 18px;
}

.gn-placeholder__copy {
  font-size: 16px;
  line-height: 1.7;
  color: #6b5645;
  max-width: 52ch;
  margin: 0 auto 32px;
}

.gn-placeholder__back {
  display: block;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gn-brown);
  text-decoration: underline;
}

/* Placeholder variant with a full-bleed photo background (e.g. Design Service) */
.gn-placeholder--photo {
  position: relative;
  padding: 150px 24px 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.gn-placeholder--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,4,.55), rgba(20,10,4,.72));
  z-index: -1;
}

.gn-placeholder--photo .gn-placeholder__eyebrow {
  color: var(--gn-gold);
}

.gn-placeholder--photo .gn-placeholder__title {
  color: var(--gn-cream);
}

.gn-placeholder--photo .gn-placeholder__copy {
  color: var(--gn-cream);
  opacity: .9;
}

.gn-placeholder--photo .gn-placeholder__back {
  color: var(--gn-cream);
}

@media (max-width: 560px) {
  .gn-placeholder--photo { padding: 110px 20px 120px; }
}

/* Category page hero (simpler than home hero) */
.gn-page-hero {
  background: var(--gn-brown-dark);
  padding: 56px 0;
  text-align: center;
}

.gn-page-hero__eyebrow {
  color: var(--gn-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.gn-page-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gn-cream);
  margin: 0 0 14px;
}

.gn-page-hero__copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gn-cream);
  opacity: .88;
  max-width: 60ch;
  margin: 0 auto;
}

/* Product block */
.gn-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(61,26,10,.1);
}

.gn-product:last-of-type { border-bottom: 0; }

.gn-product--reverse .gn-product__media { order: 2; }

.gn-product__media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.gn-product__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gn-product__gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.gn-product__eyebrow {
  color: var(--gn-gold-dark, #a97a34);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.gn-product__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 14px;
}

.gn-product__copy {
  font-size: 15.5px;
  line-height: 1.75;
  color: #6b5645;
  margin: 0 0 20px;
}

.gn-product__features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.gn-product__features li {
  font-size: 14.5px;
  color: #55402f;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.gn-product__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gn-gold);
}

@media (max-width: 860px) {
  .gn-product { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .gn-product--reverse .gn-product__media { order: 0; }
}

/* Custom order CTA (bottom of category pages) */
.gn-custom-cta { background: var(--gn-brown-dark); border-radius: 20px; padding: 44px 36px; text-align: center; margin-top: 20px; }
.gn-custom-cta__title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; color: var(--gn-cream); margin: 0 0 12px; }
.gn-custom-cta__copy { font-size: 15px; line-height: 1.7; color: var(--gn-cream); opacity: .88; max-width: 56ch; margin: 0 auto 26px; }
.gn-custom-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.gn-find-us__head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.gn-find-us__head .gn-btn { margin-top: 18px; }
.gn-find-us__map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(61,26,10,.12); }
.gn-find-us__map iframe { display: block; width: 100%; }

@media (max-width: 560px) {
  .gn-find-us__map iframe { height: 260px; }
}

/* About Us page */
.gn-about-hero {
  position: relative;
  padding: 130px 24px 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  isolation: isolate;
}

.gn-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,4,.6), rgba(20,10,4,.78));
  z-index: -1;
}

.gn-about-hero__eyebrow {
  color: var(--gn-gold);
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gn-about-hero__mark {
  color: var(--gn-cream);
  font-weight: 800;
}

.gn-about-hero__title {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 700;
  color: var(--gn-cream);
  margin: 0 0 16px;
}

.gn-about-hero__copy {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--gn-cream);
  opacity: .9;
  max-width: 62ch;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .gn-about-hero { padding: 100px 20px 80px; }
}

.gn-about-banner {
  margin: 20px 0 56px;
  border-radius: 20px;
  overflow: hidden;
}

.gn-about-banner img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.gn-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 56px;
}

.gn-about-features__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.gn-about-features__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 8px;
}

.gn-about-features__item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b5645;
  margin: 0;
}

@media (max-width: 700px) {
  .gn-about-features { grid-template-columns: 1fr; }
}

.gn-about-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  text-align: left;
}

.gn-about-contact__item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gn-gold);
  margin: 0 0 8px;
}

.gn-about-contact__item p,
.gn-about-contact__item a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gn-cream);
  opacity: .92;
  margin: 0;
  text-decoration: none;
}

.gn-about-contact__item a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .gn-about-contact { grid-template-columns: 1fr; text-align: center; }
}

/* Bedroom Guides hub */
.gn-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gn-guide-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(61,26,10,.07);
  transition: transform .15s ease, box-shadow .15s ease;
}

.gn-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(61,26,10,.12);
}

.gn-guide-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f4efe9;
}

.gn-guide-card__body {
  padding: 20px 22px 24px;
}

.gn-guide-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gn-brown);
  margin: 0 0 8px;
  line-height: 1.35;
}

.gn-guide-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #6b5645;
  margin: 0 0 12px;
}

.gn-guide-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gn-gold-dark, #a97a34);
}

@media (max-width: 900px) {
  .gn-guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gn-guides-grid { grid-template-columns: 1fr; }
}

/* Guide article */
.gn-article-hero {
  background: var(--gn-brown-dark);
  padding: 56px 0 40px;
  text-align: center;
}

.gn-article-hero__eyebrow {
  color: var(--gn-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.gn-article-hero__title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--gn-cream);
  margin: 0 auto;
  max-width: 46ch;
  line-height: 1.25;
}

.gn-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.gn-article__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f4efe9;
  border-radius: 16px;
  margin-bottom: 40px;
}

.gn-article h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--gn-brown);
  margin: 40px 0 16px;
}

.gn-article p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a3626;
  margin: 0 0 18px;
}

.gn-article ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.gn-article li {
  font-size: 15px;
  line-height: 1.75;
  color: #4a3626;
  margin-bottom: 8px;
}

.gn-article__back {
  display: inline-block;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gn-brown);
  text-decoration: underline;
}

/* Small-screen refinements */
@media (max-width: 560px) {
  .gn-hero { min-height: 520px; }
  .gn-hero__content { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gn-features { grid-template-columns: 1fr; row-gap: 28px; }
}

html, body { overflow-x: hidden; }
