/* ═══════════════════════════════════════════════════════
   A BRITISH FINISH — Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ───────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Palette */
  --color-ivory:       #FAF8F5;
  --color-cream:       #F3EDE4;
  --color-warm-gray:   #E8E2D9;
  --color-charcoal:    #1B1B1B;
  --color-slate:       #3A3A3A;
  --color-muted:       #6B6560;
  --color-accent:      #8B7355;
  --color-accent-dark: #6D5A43;
  --color-accent-light:#C4A87C;
  --color-teal:        #4A6D6D;
  --color-teal-light:  #D2E6E6;
  --color-white:       #FFFFFF;
  --color-black:       #0A0A0A;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:  clamp(4rem, 8vw, 8rem);
  --container:    1200px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate);
  background: var(--color-ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul { list-style: none; }

/* ── Container ───────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Section Eyebrow & Title ─────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.btn--large {
  padding: 1.15rem 3rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo-img {
  height: 150px;
  width: auto;
  filter: grayscale(100%) brightness(1.1);
  transition: all 0.3s var(--ease);
}

.nav--scrolled .nav__logo-img {
  height: 60px;
}

.nav__logo-img:hover {
  opacity: 0.7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color 0.3s var(--ease);
}

.nav--scrolled .nav__links a {
  color: var(--color-slate);
}

.nav--scrolled .nav__links a:hover {
  color: var(--color-accent);
}

.nav__cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease);
}

.nav--scrolled .nav__cta {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal) !important;
}

.nav--scrolled .nav__cta:hover {
  background: var(--color-charcoal);
  color: var(--color-white) !important;
}

.nav__cta:hover {
  background: var(--color-white);
  color: var(--color-charcoal) !important;
  border-color: var(--color-white);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s var(--ease);
}

.nav--scrolled .nav__toggle span {
  background: var(--color-charcoal);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--color-charcoal);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* ── Story ───────────────────────────────────────────── */
.story {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story__image-col {
  position: relative;
}

.story__image-wrapper {
  position: relative;
  overflow: hidden;
}

.story__image-wrapper::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--color-warm-gray);
  z-index: -1;
}

.story__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.story__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
}

.story__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent-light);
}

.story__badge-text {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.7;
}

.story__body p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.story__body p:last-child {
  margin-bottom: 0;
}

.story__body strong {
  color: var(--color-charcoal);
  font-weight: 500;
}

/* ── Craft ───────────────────────────────────────────── */
.craft {
  padding: var(--section-pad) 0;
  background: var(--color-ivory);
}

.craft__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.craft__card {
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-warm-gray);
  transition: all 0.4s var(--ease);
}

.craft__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.craft__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.craft__card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.craft__card-text {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ── Services ────────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.services .section-eyebrow {
  color: var(--color-accent-light);
}

.services .section-title {
  color: var(--color-white);
}

.services__intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.services__item {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease);
}

.services__item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
}

.services__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-accent-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.services__item-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.services__item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 280px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-white);
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.testimonials__content {
  max-width: 780px;
  margin: 0 auto;
}

.testimonial {
  position: relative;
  text-align: center;
}

.testimonial__quote-mark {
  width: 48px;
  height: 48px;
  color: var(--color-accent-light);
  opacity: 0.4;
  margin: 0 auto 2rem;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.testimonial__text:last-of-type {
  margin-bottom: 2rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial__author-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.testimonial__author cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--color-ivory);
}

.cta-banner__inner {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--color-warm-gray);
  background: var(--color-white);
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── Contact ─────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.contact__intro {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.contact__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.contact__detail a:hover {
  color: var(--color-accent);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.form__optional {
  color: var(--color-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form__input {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-warm-gray);
  background: var(--color-ivory);
  color: var(--color-charcoal);
  transition: border-color 0.3s var(--ease);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form__input:focus {
  border-color: var(--color-accent);
}

.form__select {
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.8;
  filter: grayscale(100%) brightness(1.8);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.footer__nav h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer__nav li {
  margin-bottom: 0.6rem;
}

.footer__nav a {
  font-size: 0.875rem;
  transition: color 0.3s var(--ease);
}

.footer__nav a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__crown {
  font-style: italic;
}

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s var(--ease);
}

.lightbox__close:hover {
  opacity: 0.6;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ── Union Jack Accents ──────────────────────────────── */
.union-jack-sm {
  display: inline-block;
  width: 22px;
  height: 14px;
  background: linear-gradient(to bottom,
    #00247D 0%, #00247D 28%,
    #CF142B 28%, #CF142B 36%,
    #FFFFFF 36%, #FFFFFF 44%,
    #CF142B 44%, #CF142B 52%,
    #FFFFFF 52%, #FFFFFF 60%,
    #CF142B 60%, #CF142B 68%,
    #00247D 68%, #00247D 100%
  );
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 0.5rem;
  opacity: 0.8;
  position: relative;
  top: -1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.union-jack-sm--footer {
  opacity: 0.5;
  margin-right: 0.4rem;
}

.british-stripe {
  width: 40px;
  height: 4px;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right,
    #00247D 0%, #00247D 33%,
    #FFFFFF 33%, #FFFFFF 50%,
    #CF142B 50%, #CF142B 100%
  );
  border-radius: 2px;
}

/* ── Reveal Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .craft__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.1rem;
    color: var(--color-charcoal) !important;
  }

  .nav__cta {
    border-color: var(--color-charcoal) !important;
    color: var(--color-charcoal) !important;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero__scroll {
    display: none;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story__image-wrapper::before {
    display: none;
  }

  .story__badge {
    right: 1rem;
    bottom: -1rem;
  }

  .story__text-col {
    order: -1;
  }

  .craft__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .craft__card {
    padding: 2rem 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__item {
    padding: 2rem 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .services__number {
    font-size: 1.5rem;
  }
}
