*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --terracotta: #B5523A;
  --terracotta-dark: #8F3F2B;
  --terracotta-light: #D4755E;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --sand-lighter: #FBF7F3;
  --sand-dark: #C4A882;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 26, 26, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--sand-lighter);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.938rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

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

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 82, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn--outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  padding: 10px 22px;
  font-size: 0.875rem;
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--nav:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ─── Section Eyebrow ─── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* ─── Section Heading ─── */
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

.section-heading--light em {
  color: var(--sand);
}

.section-sub {
  font-size: 1.063rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  margin: 0 auto;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(181, 82, 58, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

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

.nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 247, 243, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--terracotta);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1A1A1A 0%,
    #2D1F1A 25%,
    #4A2520 50%,
    #B5523A 75%,
    #D4755E 100%
  );
  z-index: 0;
}

.hero__gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(181, 82, 58, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 117, 94, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 26, 26, 0.2) 0%, transparent 70%);
}

.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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 28px;
  display: block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--sand);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.188rem);
  color: rgba(232, 213, 192, 0.8);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__actions .btn--outline {
  color: var(--sand);
  border-color: rgba(232, 213, 192, 0.5);
}

.hero__actions .btn--outline:hover {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--sand);
}

.hero__credibility {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.hero__cred-item {
  text-align: center;
}

.hero__cred-item .cred-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 213, 192, 0.5);
  margin-bottom: 4px;
}

.hero__cred-item .cred-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--sand);
}

.hero__cred-divider {
  width: 1px;
  height: 32px;
  background: rgba(232, 213, 192, 0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(232, 213, 192, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── About ─── */
.about {
  padding: 120px 0;
  background: var(--sand-lighter);
}

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

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about__text {
  padding: 20px 0;
}

.about__body {
  font-size: 1.063rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Practice Areas ─── */
.practice {
  padding: 120px 0;
  background: var(--sand-light);
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.practice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid rgba(181, 82, 58, 0.08);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.practice-card:hover .practice-card__icon {
  background: var(--terracotta);
  color: var(--white);
}

.practice-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.practice-card__body {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.practice-card__link:hover {
  gap: 12px;
}

/* ─── Why Us ─── */
.why {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 82, 58, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why__body {
  font-size: 1.063rem;
  color: rgba(232, 213, 192, 0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point__number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.why-point strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.188rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 6px;
}

.why-point span {
  font-size: 0.938rem;
  color: rgba(232, 213, 192, 0.6);
  line-height: 1.6;
}

.why__image-stack {
  position: relative;
  height: 620px;
}

.why__image-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.why__image-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.why__image-float img {
  border-radius: var(--radius-sm);
  display: block;
}

.why__image-caption {
  font-size: 0.813rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px 16px;
  font-weight: 500;
}

/* ─── Quote Section ─── */
.quote-section {
  padding: 100px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote__mark {
  color: var(--white);
  margin-bottom: 24px;
}

.quote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 32px;
}

.quote cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-style: normal;
}

.quote cite strong {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sand);
}

.quote cite span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* ─── Contact ─── */
.contact {
  padding: 120px 0;
  background: var(--sand-lighter);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__body {
  font-size: 1.063rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail svg {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-decoration: none;
}

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

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(181, 82, 58, 0.08);
}

.contact__form-header {
  margin-bottom: 32px;
}

.contact__form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact__form-header p {
  font-size: 0.938rem;
  color: var(--text-secondary);
}

.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: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.938rem;
  color: var(--charcoal);
  background: var(--sand-lighter);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(181, 82, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-note {
  font-size: 0.813rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success svg {
  color: var(--terracotta);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232, 213, 192, 0.1);
}

.logo--light .logo-mark {
  background: var(--terracotta);
}

.logo--light .logo-text {
  color: var(--white);
}

.footer__tagline {
  font-size: 0.938rem;
  color: rgba(232, 213, 192, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__link-col strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer__link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-col a {
  font-size: 0.875rem;
  color: rgba(232, 213, 192, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link-col a:hover {
  color: var(--terracotta-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0;
  gap: 20px;
}

.footer__bottom p {
  font-size: 0.813rem;
  color: rgba(232, 213, 192, 0.4);
  line-height: 1.6;
}

.footer__disclaimer {
  max-width: 480px;
  text-align: right;
}

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about__layout,
  .why__layout,
  .contact__layout {
    gap: 48px;
  }

  .practice__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__image-stack {
    height: 480px;
  }

  .why__image-main img {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .nav,
  .btn--nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero__credibility {
    flex-direction: column;
    gap: 16px;
  }

  .hero__cred-divider {
    width: 48px;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrap img {
    height: 360px;
  }

  .practice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .practice-card {
    padding: 28px 24px;
  }

  .why__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why__image-stack {
    height: 360px;
    order: -1;
  }

  .why__image-main img {
    height: 360px;
  }

  .why__image-float {
    left: 16px;
    bottom: -20px;
  }

  .quote-section {
    padding: 72px 20px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer__disclaimer {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}
