:root {
  --bg: #050505;
  --bg-strong: #0a0a0a;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.85);
  --panel-strong: rgba(24, 24, 24, 0.96);
  --text: #f5f1ea;
  --muted: #b8b0a3;
  --gold-1: #c89b3c;
  --gold-2: #d4af37;
  --gold-3: #f0c75e;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: min(1200px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold-3);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold-3);
  color: var(--text);
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-pad-top {
  padding-top: 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-3);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav {
  width: var(--container);
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.nav-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240,199,94,0.42);
  box-shadow: 0 0 20px rgba(212,175,55,0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.8);
  transition: color 0.22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-3);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: all 0.25s ease;
}

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.62) 0%, rgba(5,5,5,0.74) 58%, rgba(5,5,5,0.96) 100%),
    url("../images/9O9A1648.jpg") center 38% / cover no-repeat,
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(240, 199, 94, 0.12), transparent 22%),
    radial-gradient(circle at 50% 70%, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(6,6,6,0.96), rgba(5,5,5,0.99));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background-image:
    radial-gradient(2px 2px at 15% 30%, rgba(240, 199, 94, 0.8), transparent 100%),
    radial-gradient(2px 2px at 35% 60%, rgba(240, 199, 94, 0.7), transparent 100%),
    radial-gradient(2px 2px at 70% 35%, rgba(240, 199, 94, 0.8), transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 70%, rgba(212, 175, 55, 0.7), transparent 100%),
    radial-gradient(2px 2px at 60% 80%, rgba(240, 199, 94, 0.8), transparent 100%),
    radial-gradient(2px 2px at 48% 52%, rgba(240, 199, 94, 0.8), transparent 100%);
  opacity: 0.8;
  animation: drift 18s linear infinite alternate;
}

.hero::after {
  background: linear-gradient(140deg, rgba(255,255,255,0.04), rgba(212,175,55,0.04), rgba(255,255,255,0.02));
  mix-blend-mode: screen;
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -18px, 0) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100%, 900px);
  padding: 60px 20px 110px;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 8rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(245, 241, 234, 0.96);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.18);
}

.hero-sub {
  margin-top: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.home-gallery-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0b0a08 100%);
}

.home-gallery {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  gap: 18px;
}

.home-gallery-item {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: var(--bg-soft);
}

.home-gallery-item-wide {
  min-height: 460px;
}

.home-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78));
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.3s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.home-gallery-item span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-gallery-link {
  margin-top: 28px;
  text-align: center;
}

.home-showcase {
  padding-top: 10px;
  background: linear-gradient(180deg, #0b0a08 0%, var(--bg) 100%);
}

.home-showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 24px 70px rgba(0,0,0,0.46), 0 0 36px rgba(212,175,55,0.08);
  background: var(--bg-soft);
}

.home-showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.2));
}

.home-showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.8), rgba(5,5,5,0.98)),
    url("../images/hero/hero-placeholder.svg") center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.12), transparent 40%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-inner {
  max-width: 800px;
}

.page-hero-title {
  font-size: clamp(2.6rem, 5vw, 5rem);
  margin: 0 0 18px;
  color: var(--text);
}

.page-hero p {
  font-size: 1.04rem;
  color: rgba(245,241,234,0.72);
  max-width: 680px;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: linear-gradient(180deg, rgba(20,20,20,0.8), rgba(12,12,12,0.85));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,199,94,0.38);
  box-shadow: 0 26px 80px rgba(0,0,0,0.52);
}

.media-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.media-card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 22px 22px 26px;
}

.card-body p {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4);
  background: linear-gradient(135deg, rgba(200,155,60,0.14), rgba(240,199,94,0.06));
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(240,199,94,0.7);
  box-shadow: 0 0 30px rgba(212,175,55,0.16);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(200,155,60,0.24), rgba(240,199,94,0.1));
}

.btn-secondary {
  background: transparent;
}

.text-gold {
  color: var(--gold-3);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 660px;
}

.info-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(18,18,18,0.8), rgba(9,9,9,0.9));
  padding: 44px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: var(--shadow);
}

.info-panel .stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.info-panel .stat strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold-3);
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.42));
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.list-check li::before {
  content: "✦";
  color: var(--gold-3);
  font-size: 1.05rem;
  line-height: 1.4;
}

.service-card {
  padding: 26px 22px 24px;
}

.service-card .service-icon {
  font-size: 2rem;
  color: var(--gold-3);
  margin-bottom: 18px;
}

.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.26);
  border-radius: 999px;
  color: rgba(245,241,234,0.8);
  padding: 11px 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: rgba(240,199,94,0.75);
  color: var(--gold-3);
  box-shadow: 0 0 26px rgba(212,175,55,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.gallery-item.large {
  grid-column: span 6;
  aspect-ratio: 1.45 / 1;
}

.gallery-item.medium {
  grid-column: span 4;
  aspect-ratio: 1 / 1.08;
}

.gallery-item.small {
  grid-column: span 3;
  aspect-ratio: 0.9 / 1.2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.62));
}

.gallery-item .caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  max-height: 90vh;
}

.lightbox-content img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(10,10,10,0.8);
  color: var(--text);
  cursor: pointer;
}

.lightbox-prev { left: -24px; }
.lightbox-next { right: -24px; }
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(10,10,10,0.8);
  color: var(--text);
  cursor: pointer;
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
}

.showcase .image-card {
  min-height: 580px;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline-item .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(200,155,60,0.18), rgba(240,199,94,0.07));
  color: var(--gold-3);
  border: 1px solid rgba(212,175,55,0.35);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  padding: 28px 24px;
}

.price-card.featured {
  position: relative;
  border-color: rgba(240,199,94,0.5);
  box-shadow: 0 20px 70px rgba(212,175,55,0.12);
}

.price-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.price-card .price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--gold-3);
  margin: 12px 0 16px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price-card ul li::before {
  content: "✦";
  color: var(--gold-3);
  margin-right: 10px;
}

.review-card {
  padding: 28px 24px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold-3);
  letter-spacing: 0.1em;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
}

.contact-box {
  padding: 30px 26px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.78);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(240,199,94,0.8);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: rgba(255, 120, 120, 0.7);
}

.field .error {
  display: none;
  color: #ff8e8e;
  font-size: 0.75rem;
}

.field .error.visible {
  display: block;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.check-row-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 52px;
}

.checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-row input[type="checkbox"] {
  accent-color: var(--gold-3);
  width: 18px;
  height: 18px;
}

.form-message {
  min-height: 28px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--gold-3);
}

.footer {
  background: linear-gradient(180deg, rgba(9,9,9,0.98), rgba(5,5,5,1));
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
  gap: 30px;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(245,241,234,0.72);
}

.footer-list a:hover {
  color: var(--gold-3);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,241,234,0.58);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    inset: 84px 20px auto 20px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10,10,10,0.96);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 24px;
    padding: 18px 20px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 8px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-gallery-item-wide { grid-column: span 2; min-height: 380px; }
  .pricing-table { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-wrap,
  .showcase,
  .two-column { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 88px 0; }
  .site-nav { height: 76px; }
  .nav-brand { width: 48px; height: 48px; flex-basis: 48px; }
  .hero-inner { padding-bottom: 90px; }
  .home-gallery { grid-template-columns: 1fr; }
  .home-gallery-item-wide { grid-column: auto; min-height: 320px; }
  .home-gallery-item { min-height: 280px; }
  .grid-2, .grid-3, .grid-4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.large, .gallery-item.medium, .gallery-item.small { grid-column: span 12; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 100px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
