:root {
  --black: #090909;
  --charcoal: #66625e;
  --gold: #b58a4a;
  --gold-soft: #c8a468;
  --white: #ffffff;
  --off-white: #f4f2ee;
  --off-white-2: #f7f5f2;
  --text: #171717;
  --text-soft: #737373;
  --line: rgba(181, 138, 74, 0.18);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  --max-width: 1160px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(65, 63, 61, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-soft);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.consult-btn {
  border: 1px solid rgba(181, 138, 74, 0.8);
  color: var(--gold-soft);
  padding: 15px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  transition: var(--transition);
}

.consult-btn:hover {
  background: rgba(181, 138, 74, 0.08);
}

/* GLOBAL TEXT */
.section-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-kicker.small {
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.section-kicker.center,
.section-title.center {
  text-align: center;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 54px;
}

/* HERO */
.about-hero {
  padding: 150px 0 90px;
  min-height: 980px;
  display: flex;
  align-items: flex-start;
  background: var(--off-white-2);
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-hero .hero-kicker {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.65em;
  margin-bottom: 36px;
}

.about-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: 0.88;
  font-weight: 700;
  color: #171717;
  margin-bottom: 34px;
}

.about-hero h1 span {
  color: #a16b41;
}

.about-hero .about-brand-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.about-hero .about-brand-title span {
  display: inline-block;
  margin-top: 8px;
  color: #9d6d3c;
  font-size: 0.74em;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: -4px 0 34px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(181, 138, 74, 0.62);
  border-radius: 3px;
  padding: 13px 22px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--transition);
}

.hero-action-primary {
  background: #9d6d3c;
  border-color: #9d6d3c;
  color: var(--white);
}

.hero-action-secondary {
  color: #8a653e;
}

.hero-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.hero-quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.quote-bar {
  width: 2px;
  min-width: 2px;
  height: 92px;
  background: rgba(181, 138, 74, 0.35);
  margin-top: 6px;
}

.hero-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-style: italic;
  color: #5f5a56;
}

.hero-trust-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust-list span {
  border-top: 1px solid rgba(181, 138, 74, 0.36);
  color: #6d6863;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 12px 10px 0;
  text-transform: uppercase;
}

/* ORIGIN */
.origin-section {
  padding: 84px 0 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.origin-image {
  background: #f6f3ef;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px;
  aspect-ratio: 1.14 / 1;
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.origin-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.3rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.origin-text {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 42px;
}

.origin-text p + p {
  margin-top: 18px;
}

.origin-links {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
}

.origin-link-group h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1b1b1b;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.origin-link-group h4::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
}

.origin-link-group a {
  display: inline-block;
  margin-top: 10px;
  color: #a3a09b;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  font-weight: 600;
}

.origin-link-group a:hover {
  color: var(--gold);
}

/* MISSION VISION */
.mission-vision-section {
  padding: 58px 0 78px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-card {
  position: relative;
  min-height: 490px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mission-card {
  background: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.vision-card {
  background: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 16px;
}

.card-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 480px;
}

/* TRUST */
.trust-section {
  padding: 88px 0 96px;
  background: #141312;
  color: var(--white);
}

.trust-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.trust-heading .section-title {
  margin-bottom: 20px;
}

.trust-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(181, 138, 74, 0.28);
  border: 1px solid rgba(181, 138, 74, 0.28);
}

.trust-card {
  min-height: 285px;
  background:
    linear-gradient(145deg, rgba(181, 138, 74, 0.08), transparent 46%),
    #181716;
  padding: 34px 28px;
}

.trust-card span,
.process-steps span {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.trust-card h3,
.process-steps h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

/* TEAM */
.about-team-section {
  padding: 86px 0 98px;
  background:
    radial-gradient(circle at top, rgba(181, 138, 74, 0.08), transparent 34%),
    var(--off-white-2);
}

.about-team-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-team-heading .section-kicker {
  margin-bottom: 10px;
}

.team-heading-line {
  display: block;
  width: 62px;
  height: 2px;
  margin: 0 auto 22px;
  background: var(--gold);
}

.about-team-heading .section-title {
  margin-bottom: 16px;
}

.about-team-heading p:last-child {
  color: #3d3a37;
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
}

.about-team-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 28px;
}

.about-team-featured-grid-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.about-team-featured-card,
.about-team-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 74, 0.28);
  border-radius: 7px;
  background: #f9f7f3;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.about-team-featured-card {
  min-height: 300px;
  align-items: stretch;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-team-card {
  min-height: 285px;
  align-items: stretch;
}

.about-team-featured-card:hover,
.about-team-featured-card:focus-visible,
.about-team-card:hover,
.about-team-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(181, 138, 74, 0.58);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
  outline: none;
}

.about-team-featured-photo,
.about-team-photo {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(150, 107, 55, 0.55) 0 3px, transparent 3px 10px, rgba(150, 107, 55, 0.18) 10px 12px, transparent 12px 100%),
    radial-gradient(circle at 58% 42%, rgba(255, 250, 237, 0.95) 0 12%, rgba(232, 219, 199, 0.7) 26%, transparent 48%),
    linear-gradient(135deg, rgba(244, 238, 226, 0.96), rgba(210, 198, 181, 0.86));
  overflow: hidden;
}

.about-team-featured-photo::before,
.about-team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 30%, rgba(172, 132, 75, 0.16) 31%, transparent 34%),
    linear-gradient(64deg, transparent 0 58%, rgba(255, 255, 255, 0.45) 59%, transparent 63%);
  opacity: 0.76;
}

.about-team-featured-photo::after,
.about-team-photo::after {
  content: "";
  position: absolute;
  inset: 14% 12% 12%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  box-shadow:
    0 0 48px rgba(255, 250, 235, 0.72),
    inset 0 0 24px rgba(255, 255, 255, 0.36);
  opacity: 0.62;
}

.about-team-featured-photo {
  flex: 0 0 54%;
  min-height: 300px;
}

.about-team-photo {
  flex: 0 0 52%;
  min-height: 285px;
}

.about-team-card:nth-child(2n) .about-team-photo,
.about-team-featured-card:nth-child(2n) .about-team-featured-photo {
  background:
    linear-gradient(90deg, rgba(150, 107, 55, 0.42) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 52% 38%, rgba(255, 250, 237, 0.95) 0 13%, rgba(232, 219, 199, 0.72) 27%, transparent 48%),
    linear-gradient(120deg, rgba(232, 218, 198, 0.94), rgba(247, 243, 235, 0.9));
}

.about-team-card:nth-child(3n) .about-team-photo {
  background:
    radial-gradient(circle at 58% 40%, rgba(255, 250, 237, 0.95) 0 12%, rgba(225, 214, 198, 0.76) 28%, transparent 50%),
    linear-gradient(90deg, rgba(60, 52, 44, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(214, 204, 190, 0.96), rgba(242, 238, 230, 0.9));
}

.about-team-featured-photo img,
.about-team-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.88);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-team-photo img {
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.08);
  transform-origin: center bottom;
}

.about-team-featured-card:hover .about-team-featured-photo img,
.about-team-featured-card:focus-visible .about-team-featured-photo img,
.about-team-card:hover .about-team-photo img,
.about-team-card:focus-visible .about-team-photo img {
  filter: saturate(1);
}

.about-team-featured-card:hover .about-team-featured-photo img,
.about-team-featured-card:focus-visible .about-team-featured-photo img {
  transform: scale(1.03);
}

.about-team-card:hover .about-team-photo img,
.about-team-card:focus-visible .about-team-photo img {
  transform: scale(1.11);
}

.about-team-featured-photo.is-missing,
.about-team-photo.is-missing {
  background:
    linear-gradient(135deg, rgba(181, 138, 74, 0.16), transparent),
    #c7c3bd;
}

.about-team-featured-content,
.about-team-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.about-team-featured-content {
  justify-content: center;
  padding: 34px 32px;
}

.about-team-content {
  padding: 24px 22px 16px;
}

.about-team-featured-content h3,
.about-team-content h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  color: #121212;
}

.about-team-featured-content h3 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  max-width: 9ch;
}

.about-team-content h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.about-team-role {
  margin-top: 3px;
  color: #a16b32;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-team-divider {
  width: 54px;
  height: 1px;
  margin: 10px 0 12px;
  background: rgba(181, 138, 74, 0.64);
}

.about-team-bio {
  color: #3f3c38;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.about-team-tags span {
  border: 1px solid rgba(181, 138, 74, 0.48);
  border-radius: 4px;
  color: #9a6b32;
  font-size: 0.72rem;
  line-height: 1;
  padding: 7px 10px;
}

/* CONSULTATION PROCESS */
.consultation-process-section {
  padding: 92px 0;
  background: var(--off-white);
}

.consultation-process-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.consultation-process-copy {
  position: sticky;
  top: 120px;
}

.consultation-process-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

.consultation-process-copy > p:last-of-type {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-bottom: 28px;
  max-width: 470px;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9d6d3c;
  background: #9d6d3c;
  color: var(--white);
  min-height: 50px;
  padding: 14px 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--transition);
}

.process-cta:hover {
  background: #7e5730;
  border-color: #7e5730;
  transform: translateY(-2px);
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-steps article {
  border-left: 3px solid rgba(181, 138, 74, 0.78);
  background: #fbfaf7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
  padding: 30px 34px;
}

.process-steps h3 {
  color: #171717;
}

.process-steps p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* VALUES */
.values-section {
  padding: 82px 0 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  padding-bottom: 84px;
}

.value-card {
  text-align: center;
}

.value-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
  color: #AA8D5D;
  margin-bottom: 16px;
  font-weight: 700;
}

.value-card h3 {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.value-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 250px;
  margin: 0 auto;
}

/* CULTURE */
.culture-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.34), rgba(0,0,0,0.58));
}

.culture-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.culture-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}

.culture-content p {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.55em;
}

.culture-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--transition);
}

.culture-content a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* FOOTER */
.site-footer {
  background: #090909;
  color: var(--white);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
}

.footer-logo {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer-logo-image {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: #b9b9b9;
  font-size: 1rem;
  line-height: 1.9;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
}

.footer-col a:hover,
.footer-accent:hover {
  color: var(--white);
}

.footer-accent {
  color: var(--gold) !important;
}

.footer-strong {
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-links a {
  color: #8f8f8f;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .main-nav {
    gap: 24px;
  }

  .values-grid {
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .site-header {
    position: relative;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .about-hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .origin-grid,
  .mission-grid,
  .trust-grid,
  .consultation-process-grid,
  .about-team-featured-grid,
  .about-team-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .consultation-process-copy {
    position: static;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .hero-quote-wrap {
    gap: 16px;
  }

  .quote-bar {
    height: 74px;
  }

  .origin-links {
    gap: 30px;
  }

  .about-team-section {
    padding: 70px 0 76px;
  }

  .about-team-featured-grid,
  .about-team-grid {
    max-width: 460px;
    margin: 0 auto;
  }

  .about-team-featured-card,
  .about-team-card {
    flex-direction: column;
  }

  .about-team-featured-photo,
  .about-team-photo {
    flex: 0 0 auto;
    height: 245px;
    min-height: 245px;
  }

  .about-team-featured-content,
  .about-team-content {
    padding: 24px 22px 18px;
  }

  .about-team-featured-content h3 {
    max-width: none;
  }

  .card-content {
    padding: 34px 26px;
  }

  .trust-section,
  .consultation-process-section {
    padding: 70px 0;
  }

  .trust-card {
    min-height: auto;
  }

  .value-card h3,
  .main-nav a,
  .consult-btn,
  .section-kicker,
  .culture-content p {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 4.2rem;
  }

  .about-hero .about-brand-title {
    font-size: 3.4rem;
  }

  .hero-action,
  .process-cta,
  .culture-content a {
    width: 100%;
    max-width: 320px;
  }

  .hero-trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-quote {
    font-size: 1.7rem;
  }

  .info-card {
    min-height: 400px;
  }

  .about-team-featured-photo,
  .about-team-photo {
    height: 215px;
    min-height: 215px;
  }

  .culture-banner {
    min-height: 380px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
