/* === DESIGN TOKENS === */
:root {
  /* Brand colors */
  --gd-navy: #061f40;
  --gd-navy-light: #0a2e5c;
  --gd-navy-dark: #030f24;
  --gd-orange: #f4893e;
  --gd-orange-deep: #d9742e; /* Hover/darker for --gd-orange (e.g. button :hover). */
  --gd-cream: #f6f4ef;
  --gd-text: #0a1a2f;
  --gd-text-muted: #4a5668;
  --gd-border: #e2e6ec;

  /* Typography */
  --gd-font-display: "Archivo", Impact, "Public Sans", sans-serif;
  --gd-font-body: "Public Sans", "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --gd-max-width: 1280px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Anchor scroll offset — keeps section headings clear of the sticky header. */
html {
  scroll-padding-top: 90px;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: var(--gd-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--gd-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gd-orange);
  outline-offset: 2px;
}

/* === UTILITIES === */

/* Visually-hidden but accessible (screen readers, honeypot label, icon-only buttons). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Keyboard skip link — hidden until focused. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gd-orange);
  color: #fff;
  padding: 10px 18px;
  font-family: var(--gd-font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

/* Centered max-width container; mobile-first horizontal padding. */
.container {
  max-width: var(--gd-max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Buttons — angle-clipped trade aesthetic. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  font-family: var(--gd-font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gd-orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(244, 137, 62, 0.35);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-primary:hover {
  background: var(--gd-orange-deep);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 28px;
  border: 2px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Eyebrow — small uppercase tagged label (e.g. "MCKINNEY, TX · NOW BOOKING"). */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gd-orange);
  color: #fff;
  padding: 7px 14px;
  font-family: var(--gd-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Section heading — giant uppercase H2 used across content sections. */
.section-heading {
  font-family: var(--gd-font-display);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin: 0 0 24px;
  color: var(--gd-text);
  text-transform: uppercase;
  text-wrap: balance;
}
.section-heading .accent {
  color: var(--gd-orange);
}

/* === HEADER === */
.site-header {
  background: var(--gd-navy);
  color: #fff;
  border-bottom: 3px solid var(--gd-orange);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.site-header__logo {
  height: 56px;
  width: auto;
}

.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-header__wordmark-name {
  font-family: var(--gd-font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__wordmark-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--gd-orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

.site-nav a {
  font-family: var(--gd-font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

/* Mobile menu toggle button — hamburger that swaps to X when open. */
.site-header__menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-header__menu-icon--close {
  display: none;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon--open {
  display: none;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon--close {
  display: inline-block;
}

/* Mobile dropdown panel — slides below the sticky header on small screens. */
.site-header__mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gd-navy);
  border-bottom: 3px solid var(--gd-orange);
  display: flex;
  flex-direction: column;
}

.site-header__mobile-nav[hidden] {
  display: none;
}

.site-header__mobile-nav a {
  padding: 16px 20px;
  color: #fff;
  font-family: var(--gd-font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__mobile-nav a:last-child {
  border-bottom: 0;
}

.site-header__mobile-nav a:hover,
.site-header__mobile-nav a:focus-visible {
  background: var(--gd-navy-light);
}

@media (min-width: 768px) {
  .site-header__mobile-nav {
    display: none;
  }
}

/* Header CTA — overrides .btn-primary defaults for the smaller header chip. */
.site-header__cta {
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: 0.5px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }
  .site-header__menu-toggle {
    display: inline-flex;
  }
  .site-header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }
  .site-header__logo {
    height: 44px;
  }
}

@media (max-width: 479px) {
  .site-header__cta {
    padding: 10px 14px;
    font-size: 13px;
  }
  .site-header__wordmark-name {
    font-size: 15px;
  }
  .site-header__wordmark-tag {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--gd-navy-light) 0%, var(--gd-navy) 65%, var(--gd-navy-dark) 100%);
  padding-top: 64px;
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

/* Decorative blueprint grid overlay. */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__corner-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 8px;
  background: var(--gd-orange);
  pointer-events: none;
}

.hero__corner-block {
  position: absolute;
  top: 8px;
  right: 0;
  width: 80px;
  height: 160px;
  background: var(--gd-orange);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
  }
}

.hero__eyebrow {
  margin-bottom: 28px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  display: inline-block;
}

.hero__heading {
  font-family: var(--gd-font-display);
  font-size: clamp(48px, 10vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  font-weight: 900;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__heading .accent {
  color: var(--gd-orange);
}

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
  margin: 48px 0 0;
  max-width: 620px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-key {
  font-family: var(--gd-font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gd-orange);
  letter-spacing: 0.5px;
}

.hero__stat-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Right-side rotating ring + logo. Stacks below copy on mobile, sits in the right column at >=900px. */
.hero__media {
  display: flex;
  justify-content: center;
}

.hero__ring {
  position: relative;
  width: 440px;
  height: 440px;
}

.hero__ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-ring-spin 40s linear infinite;
}

.hero__ring-text {
  fill: var(--gd-orange);
  font-family: var(--gd-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero__ring-glow {
  position: absolute;
  inset: 11.36%; /* 50/440 — keeps proportions when .hero__ring scales at smaller breakpoints. */
  background: radial-gradient(circle, rgba(244, 137, 62, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__ring-logo {
  position: absolute;
  inset: 9.09%; /* 40/440 — keeps proportions when .hero__ring scales at smaller breakpoints. */
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Mobile: hide the orange L-corner composition. Both pieces or neither — without the block, the bar looks orphaned. */
@media (max-width: 767px) {
  .hero__corner-bar,
  .hero__corner-block {
    display: none;
  }
}

/* Mobile: hide the 3-column stats row. About/services/plan below carry the trust-building work. */
@media (max-width: 767px) {
  .hero__stats {
    display: none;
  }
}

/* Scale the ring down for single-column layouts. */
@media (max-width: 899px) {
  .hero__ring {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 479px) {
  .hero__ctas {
    flex-wrap: nowrap;
  }
  .hero__ctas .btn {
    font-size: 14px;
    padding: 14px 18px;
  }
  .hero__ctas .btn-outline {
    padding: 12px 16px;
  }
  .hero__cta-prefix,
  .hero__cta-arrow {
    display: none;
  }
  .hero__ring {
    width: 280px;
    height: 280px;
  }
}

/* ANIMATION PATTERN
 * Every @keyframes / animation defined in this stylesheet must be paired
 * with a `prefers-reduced-motion: reduce` override below that disables it.
 * Reduced-motion means "stop unnecessary motion" — not "slow it down."
 * Subsequent sections (marquee, etc.) follow the same pairing pattern.
 */
@keyframes hero-ring-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__ring-svg { animation: none; }
}

/* === MARQUEE === */
.marquee {
  background: var(--gd-orange);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--gd-navy);
}

.marquee__track {
  display: flex;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--gd-font-display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee__sep {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Mobile: slow the scroll and tighten the type so words stay readable instead of blurring past. */
@media (max-width: 767px) {
  .marquee__track {
    animation-duration: 45s;
    gap: 28px;
  }
  .marquee__item {
    font-size: 16px;
    gap: 14px;
  }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* === ABOUT === */
.about {
  background: var(--gd-cream);
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .about {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

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

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
  }
}

.about__media {
  position: relative;
  max-width: 560px;
}

.about__image-frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orange parallelogram brand chip overlapping the bottom-right corner of the image. */
.about__brand-chip {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--gd-orange);
  color: #fff;
  padding: 16px 22px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.about__brand-name {
  font-family: var(--gd-font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about__brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

/* About-specific override of .section-heading: scale tops out at 60px (vs utility's 64). */
.about__copy .section-heading {
  font-size: clamp(36px, 6.5vw, 60px);
  letter-spacing: -0.023em;
  margin-bottom: 28px;
}

.about__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gd-text-muted);
  margin: 0 0 20px;
  max-width: 560px;
}

.about__lede:last-of-type {
  margin-bottom: 32px;
}

.about__chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about__chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--gd-border);
  border-left: 4px solid var(--gd-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gd-text);
}

.about__chip-icon {
  color: var(--gd-orange);
  flex-shrink: 0;
}

/* Mobile: stack chips and pull the brand chip back inside the image bounds. */
@media (max-width: 479px) {
  .about__chips {
    grid-template-columns: 1fr;
  }
  .about__brand-chip {
    right: -12px;
    bottom: -12px;
  }
}

/* === SERVICES === */
.services {
  background: #fff;
  border-top: 1px solid var(--gd-border);
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .services {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

/* Header row: H2 left, intro lede right (stacks on mobile). */
.services__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .services__header {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
    align-items: end;
  }
}

.services__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gd-text-muted);
  max-width: 420px;
  margin: 0;
}

/* Hairline grid: 1px gap reveals the gray bg between cards. */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gd-border);
  border: 1px solid var(--gd-border);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards equalize height per row by default (grid align-items: stretch). Icon stays at top of card via natural block flow; extra height (when row gets taller) collects below the blurb. */
.services__card {
  background: #fff;
  padding: 32px 28px 36px;
  transition: background 0.15s ease;
}

.services__card:hover {
  background: var(--gd-cream);
}

.services__card-icon {
  color: var(--gd-orange);
  display: block;
}

.services__card-title {
  font-family: var(--gd-font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 20px 0 10px;
  color: var(--gd-text);
}

.services__card-blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gd-text-muted);
  margin: 0;
}

/* === MAINTENANCE PLAN === */
.maintenance {
  background: var(--gd-navy);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .maintenance {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.maintenance__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gd-orange);
  pointer-events: none;
}

.maintenance__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 60px 60px;
}

.maintenance__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .maintenance__inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

/* H2 inherits utility scale; flip color for the dark bg. */
.maintenance .section-heading {
  color: #fff;
}

.maintenance__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 36px;
  max-width: 520px;
}

/* CTA — smaller than hero, larger than header. */
.maintenance__cta {
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 1px;
}

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

.maintenance__perk {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gd-orange);
}

.maintenance__perk-icon {
  color: var(--gd-orange);
  justify-self: center;
}

.maintenance__perk-text {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.maintenance__note {
  margin: 8px 0 0;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* === WORK / GALLERY === */
.gallery {
  background: var(--gd-cream);
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .gallery {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.gallery__header {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .gallery__header {
    margin-bottom: 48px;
  }
}

/* Gallery H2 narrows to 58px (vs utility's 64) and uses em-based letter-spacing. */
.gallery .section-heading {
  font-size: clamp(36px, 6.5vw, 58px);
  letter-spacing: -0.024em;
}

/* Mobile: simple equal 2-col grid. Desktop: 6-col varied masonry. */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item {
    grid-column: span 2;
  }
  .gallery__item--big {
    grid-row: span 2;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--gd-text); /* dark fallback while image loads */
}

.gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}

.gallery__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .gallery__cta {
    margin-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__image {
    transition: none;
  }
  .gallery__item:hover .gallery__image {
    transform: none;
  }
}

/* === CONTACT === */
.contact {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .contact {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
  }
}

.contact__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gd-text-muted);
  margin: 0 0 36px;
  max-width: 480px;
}

/* Info cards (left column). */
.contact__info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact__info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: var(--gd-cream);
  border-left: 3px solid var(--gd-orange);
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gd-navy);
  color: var(--gd-orange);
}

.contact__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__info-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gd-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact__info-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--gd-text);
}

/* Form panel (right column). */
.contact__form-panel {
  position: relative;
  background: var(--gd-navy);
  color: #fff;
  padding: 40px;
}

.contact__form-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gd-orange);
  pointer-events: none;
}

.contact__form-heading {
  font-family: var(--gd-font-display);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
}

.contact__form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
}

/* Form. */
.contact-form {
  display: grid;
  gap: 14px;
}

/* Honeypot — hidden via class, no inline style. */
.contact-form__honeypot {
  display: none;
}

.contact-form__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1px;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--gd-font-body);
  font-size: 16px; /* 16+ prevents iOS Safari auto-zoom on focus. */
  line-height: 1.4;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding: 14px 40px 14px 14px;
}

/* Native option styling — Chrome/Edge/Firefox honor font-size, background, color, and padding on <option>. Safari is more limited; iOS Safari uses the native picker (better than CSS for touch). */
.contact-form__field select option {
  font-size: 16px;
  background: #fff;
  color: var(--gd-text);
  padding: 8px 12px;
}

.contact-form__field select option:disabled {
  color: var(--gd-text-muted);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  outline: none;
  border-color: var(--gd-orange);
  box-shadow: 0 0 0 3px rgba(244, 137, 62, 0.2);
}

.contact-form__submit {
  width: 100%;
  margin-top: 4px;
}

.contact-form__alt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: -2px 0 0;
}

.contact-form__alt a {
  color: var(--gd-orange);
  font-weight: 600;
}

/* === FOOTER === */
.site-footer {
  background: var(--gd-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 4px solid var(--gd-orange);
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Brand left, nav right at desktop. Stacks centered on mobile. */
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__logo {
  height: 52px;
  width: auto;
}

.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__name {
  font-family: var(--gd-font-display);
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.site-footer__locale {
  font-size: 12px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.site-footer__nav a {
  font-family: var(--gd-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--gd-orange);
}

/* === THANK YOU PAGE === */
.thank-you {
  background: var(--gd-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .thank-you {
    min-height: 70vh;
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.thank-you__inner {
  text-align: center;
}

/* Orange success-circle with the check inside. */
.thank-you__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gd-orange);
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(244, 137, 62, 0.35);
}

.thank-you__heading {
  font-family: var(--gd-font-display);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--gd-text);
  text-transform: uppercase;
  text-wrap: balance;
}

.thank-you__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gd-text-muted);
  margin: 0 auto 32px;
  max-width: 520px;
}

.thank-you__lede a {
  color: var(--gd-orange);
  font-weight: 700;
}
