/* ======================================
   TIM POND DESIGN — STYLES
   ====================================== */

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

:root {
  --color-dark:     #1a1a1a;
  --color-mid:      #3d3d3d;
  --color-body:     #555;
  --color-light:    #f7f5f2;
  --color-white:    #ffffff;
  --color-accent:   #c47d3e;
  --color-accent-dark: #a86530;
  --color-border:   #e5e0d8;

  --font-sans:      'Inter', sans-serif;
  --font-display:   'Playfair Display', serif;

  --max-width: 1160px;
  --section-pad: clamp(60px, 8vw, 100px);
  --radius: 8px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.page-visible {
  opacity: 1;
}

body.page-exit {
  opacity: 0;
  transition: opacity 0.25s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* --- UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--color-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-body);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ======================================
   NAVIGATION
   ====================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  font-weight: 700;
  transition: color 0.3s;
  white-space: nowrap;
}

.logo span {
  color: var(--color-accent);
}

.site-header.scrolled .logo {
  color: var(--color-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-white);
}

.site-header.scrolled .nav-links a {
  color: var(--color-mid);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--color-dark);
}

.btn-nav {
  padding: 9px 20px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.site-header.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* DROP YOUR HERO PHOTO: images/hero.jpg */
  background: linear-gradient(135deg, #2c2416 0%, #3d3020 40%, #1a1a1a 100%);
  /* background-image: url('images/herofull.jpg'); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Decorative texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(196, 125, 62, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(196, 125, 62, 0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======================================
   TRUST BAR
   ====================================== */
.trust-bar {
  background: var(--color-dark);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-accent);
}

.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ======================================
   SERVICES
   ====================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ======================================
   ADU TYPES
   ====================================== */
.adu-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.adu-type {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
}

.adu-type-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 12px;
}

.adu-type h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.adu-type p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.adu-benefits {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}

.adu-benefits h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.benefits-list li {
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ======================================
   PROJECTS
   ====================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--color-white);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* DROP PROJECT PHOTOS: images/projects/project-1.jpg, project-2.jpg, project-3.jpg */
.project-img-1 {
  background: linear-gradient(135deg, #8b7355 0%, #c4956a 50%, #d4aa80 100%);
  background-image: url('images/projects/project-1.jpg');
  background-size: cover;
  background-position: center;
}
.project-img-2 {
  background: linear-gradient(135deg, #6b7c6b 0%, #8ea08e 50%, #a8c0a8 100%);
  background-image: url('images/projects/project-2.jpg');
  background-size: cover;
  background-position: center;
}
.project-img-3 {
  background: linear-gradient(135deg, #7a6858 0%, #a08070 50%, #c0a898 100%);
  background-image: url('images/projects/project-3.jpg');
  background-size: cover;
  background-position: center;
}

.project-info {
  padding: 24px;
}

.project-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.project-info p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ======================================
   ABOUT
   ====================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-eyebrow {
  text-align: left;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 8px;
}

.about-callout {
  background: var(--color-dark);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}

.about-callout::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-white);
  font-style: italic;
}

cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-accent);
  margin-top: 20px;
  font-weight: 500;
}

/* ======================================
   CONTACT
   ====================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--color-light);
  border-radius: 12px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 125, 62, 0.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: var(--color-dark);
}

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

/* ======================================
   PROJECT CARD OVERLAY
   ====================================== */
.project-card {
  cursor: pointer;
}

.project-img {
  position: relative;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.project-overlay span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  background: rgba(0,0,0,0.45);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
}

.project-card:hover .project-overlay {
  background: rgba(0,0,0,0.3);
}

.project-card:hover .project-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   LIGHTBOX
   ====================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-track-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.lightbox-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.lightbox-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

.lightbox-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 10;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 2.2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.22);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.lightbox-counter {
  padding: 14px 0 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .lightbox-slide {
    padding: 52px 16px 16px;
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ======================================
   PAGE HEADER (careers page)
   ====================================== */
.page-header {
  background: var(--color-dark);
  padding: clamp(80px, 12vw, 120px) 0 clamp(50px, 8vw, 80px);
  text-align: center;
}

.page-header .section-eyebrow {
  color: var(--color-accent);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ======================================
   POSITIONS LIST (careers page)
   ====================================== */
.positions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.position-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.position-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.position-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.position-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(196,125,62,0.1);
  padding: 3px 10px;
  border-radius: 99px;
}

.position-card > p {
  margin-bottom: 16px;
}

.position-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.position-details li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
}

.position-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@media (max-width: 600px) {
  .position-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================
   FILE UPLOAD
   ====================================== */
.form-label-note {
  font-weight: 400;
  color: var(--color-body);
  font-size: 0.85rem;
}

.file-upload-wrap {
  position: relative;
}

.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
  color: var(--color-body);
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload-wrap:hover .file-upload-label,
.file-upload-wrap:focus-within .file-upload-label {
  border-color: var(--color-accent);
  background: #fdf6ef;
}

/* ======================================
   CAREERS TEASER
   ====================================== */
.careers-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.careers-teaser h2 {
  margin-bottom: 12px;
}

.careers-teaser p {
  max-width: 580px;
}

.careers-teaser .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .careers-teaser {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background: var(--color-dark);
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.site-footer .logo {
  font-size: 1.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .contact-detail {
    min-width: 140px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: 20px 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child {
    border: none;
    padding-top: 12px;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    color: var(--color-mid) !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--color-dark) !important;
  }

  .btn-nav {
    display: inline-block;
    padding: 10px 24px !important;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    background: rgba(26, 26, 26, 0.95);
  }

  .site-header.scrolled .nav-toggle span {
    background: var(--color-dark);
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .trust-bar-inner {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .adu-benefits {
    padding: 28px 20px;
  }
}
