/* ========================================
   Coastal Fencing — Styles
   Plum + Amber | Fresh & Airy
======================================== */

/* --- Custom Properties --- */
:root {
  --plum-dark: #5C3D5E;
  --plum: #6B4C6E;
  --plum-light: #8B6B8D;
  --plum-pale: #F3EDF5;
  --plum-muted: #EDE5F0;
  --amber: #D4943A;
  --amber-light: #E8B96A;
  --amber-pale: #FDF3E4;
  --cream: #FDF8F4;
  --warm-white: #FEFCFA;
  --sand: #F5EDE6;
  --text-dark: #2A1F2E;
  --text: #4A3D52;
  --text-light: #7A6B82;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(92, 61, 94, 0.06);
  --shadow: 0 4px 20px rgba(92, 61, 94, 0.08);
  --shadow-md: 0 8px 40px rgba(92, 61, 94, 0.12);
  --shadow-lg: 0 16px 60px rgba(92, 61, 94, 0.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; color: var(--text-dark); }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--plum); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* --- Typography --- */
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--plum); margin-bottom: 16px;
}
.eyebrow-line {
  display: block; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.accent-italic {
  font-style: italic;
  color: var(--plum);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-weight: 600;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-md { padding: 12px 28px; font-size: 15px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92, 61, 94, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 61, 94, 0.4);
}
.btn-outline {
  border: 2px solid var(--plum);
  color: var(--plum);
  background: transparent;
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--plum-dark);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--plum-dark);
}

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 76, 110, 0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; color: var(--plum-dark);
}
.logo-icon { color: var(--amber); }
.logo-text { letter-spacing: -0.01em; }
.nav-list {
  display: none; align-items: center; gap: 32px;
}
.nav-list a {
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: var(--transition); position: relative;
}
.nav-list a:not(.btn):hover { color: var(--plum); }
.nav-list a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--amber);
  transition: var(--transition); border-radius: 2px;
}
.nav-list a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; z-index: 1001;
}
.hamburger-line {
  display: block; width: 24px; height: 2px;
  background: var(--plum-dark); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 20px;
    background: var(--warm-white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 17px; }
  .nav-list .btn { margin-top: 8px; }
  .nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(42, 31, 46, 0.4);
    z-index: 999;
  }
  .nav-overlay.show { display: block; }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-list { display: flex; }
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--plum-pale) 50%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107, 76, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
  padding: 48px 0;
}
.hero-content { order: 2; }
.hero-image-wrap { order: 1; position: relative; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--plum); margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1; margin-bottom: 24px;
  color: var(--text-dark);
}
.hero-title .accent-italic {
  display: block;
  font-size: 0.85em;
  color: var(--plum);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-light); font-weight: 500;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* Hero images */
.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 750px;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -24px; left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  aspect-ratio: 4/5;
  max-height: 400px;
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
  color: var(--plum-dark);
  font-family: var(--font-display);
}
.hero-badge svg { color: var(--amber); }
.hero-badge span {
  font-size: 14px; font-weight: 600; line-height: 1.4;
  font-family: var(--font-body);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-img-accent { left: -60px; bottom: -40px; }
  .hero-badge { right: -32px; top: 40px; }
}

/* --- Services --- */
.services {
  padding: 100px 0 120px;
  background: var(--plum-dark);
  position: relative;
}
.services .section-eyebrow { color: var(--amber-light); }
.services .section-title { color: var(--white); }
.services .section-subtitle { color: rgba(255,255,255,0.7); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(212, 148, 58, 0.3);
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 148, 58, 0.4);
}
.service-card h3 {
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 20px;
}
.service-list {
  display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%; flex-shrink: 0;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--warm-white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-col { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -32px; right: -16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
  max-width: 340px;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; top: -20px; left: -16px;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--amber-light);
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.about-content-col { max-width: 520px; }
.about-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 32px 0;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--text);
}
.about-feature svg { color: var(--amber); flex-shrink: 0; }
.about-content-col .btn { margin-top: 8px; }

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}

/* --- Gallery --- */
.gallery {
  padding: 120px 0;
  background: var(--plum-pale);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42, 31, 46, 0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-tag {
  background: var(--white);
  color: var(--plum-dark);
  font-size: 13px; font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
  background: var(--warm-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(107, 76, 110, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-quote {
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}
.author-location {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- FAQ --- */
.faq {
  padding: 120px 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.faq-left { max-width: 400px; }
.faq-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.faq-cta {
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.faq-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 16px;
}
.faq-cta .btn { font-size: 14px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(107, 76, 110, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: rgba(212, 148, 58, 0.3);
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px;
  text-align: left;
  font-size: 1rem; font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--plum); }
.faq-q-text { flex: 1; }
.faq-toggle {
  width: 28px; height: 28px;
  position: relative; flex-shrink: 0;
}
.faq-toggle span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}
.faq-toggle span:first-child {
  width: 14px; height: 2px;
}
.faq-toggle span:last-child {
  width: 2px; height: 14px;
}
.faq-item.active .faq-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, #7D5A7D 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px; position: relative; z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.8;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--warm-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col { max-width: 480px; }
.contact-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
}
.detail-icon {
  width: 48px; height: 48px;
  background: var(--plum-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.detail-value {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}
.detail-value a { color: var(--plum); transition: var(--transition); }
.detail-value a:hover { color: var(--amber); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(107, 76, 110, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 14px; font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(107, 76, 110, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 76, 110, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 48px 32px;
}
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.form-success p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.form-success a { color: var(--plum); font-weight: 600; }
.form-success .btn { margin-top: 8px; }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.6);
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact address {
  font-style: normal;
  display: flex; flex-direction: column;
  gap: 8px; font-size: 15px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; flex-direction: column;
  gap: 8px; align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner p:last-child { font-size: 13px; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--plum-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--plum); }
