


:root {
  --navy: #0D1B2A;
  --navy-mid: #162436;
  --navy-light: #1E3348;
  --amber: #E8A838;
  --amber-light: #F0B840;
  --coral: #E85D3A;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --cream-mid: #E8E0CE;
  --text-dark: #0D1B2A;
  --text-mid: #3A4F65;
  --text-muted: #6B849A;
  --text-light: #F5F0E8;

  --shadow-xs: 0 1px 3px rgba(13,27,42,0.06);
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08), 0 1px 3px rgba(13,27,42,0.05);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12), 0 2px 8px rgba(13,27,42,0.08);
  --shadow-lg: 0 24px 64px rgba(13,27,42,0.18), 0 8px 24px rgba(13,27,42,0.10);
  --shadow-xl: 0 40px 80px rgba(13,27,42,0.22), 0 16px 40px rgba(13,27,42,0.14);
  --shadow-amber: 0 4px 16px rgba(232,168,56,0.35), 0 2px 6px rgba(232,168,56,0.20);
  --shadow-inset: inset 0 2px 8px rgba(13,27,42,0.08);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 64px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --nav-height: 72px;
  --max-width: 1400px;
  --content-width: 1200px;
}


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

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

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

p {
  line-height: 1.7;
  color: var(--text-mid);
}

p + p {
  margin-top: 1rem;
}



.sectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.sectionLabel::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.sectionLabel--light {
  color: var(--amber);
}

.sectionTitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.sectionTitle--light {
  color: var(--cream);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}

.btn--primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,168,56,0.48), 0 4px 12px rgba(232,168,56,0.28);
  color: var(--navy);
}

.btn--amber {
  background: var(--amber);
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}

.btn--amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,168,56,0.48);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.3);
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn--navyOutline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,27,42,0.25);
}

.btn--navyOutline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}

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


.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.4s ease;
}

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--nav-height);
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.siteHeader_logoText {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.siteHeader_logoAccent {
  color: var(--amber);
}

.siteHeader_hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.siteHeader_hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}

.siteHeader_hamburger.isActive span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.siteHeader_hamburger.isActive span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.siteHeader_hamburger.isActive span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.siteHeader_flipContainer {
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.siteHeader_flipContainer.isOpen {
  max-height: 400px;
}

.siteHeader_nav {
  background: var(--navy-mid);
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(245,240,232,0.08);
}

.siteHeader_navLink {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.siteHeader_navLink:hover {
  color: var(--amber);
  background: rgba(232,168,56,0.08);
}

.siteHeader_navLink.isActive {
  color: var(--amber);
  background: rgba(232,168,56,0.06);
}


.mainHero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.mainHero_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a2f45 100%);
}

.mainHero_cutout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

.mainHero_cutoutAccent {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 55%;
  height: 85%;
  background: var(--amber);
  opacity: 0.06;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mainHero_circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mainHero_circle--lg {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
}

.mainHero_circle--sm {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  background: radial-gradient(circle, rgba(232,93,58,0.10) 0%, transparent 70%);
}

.mainHero_content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) calc(var(--space-xl) + 80px);
  width: 100%;
}

.mainHero_label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mainHero_label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.mainHero_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.mainHero_titleAccent {
  color: var(--amber);
  display: block;
}

.mainHero_sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.mainHero_ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.mainHero_scroll {
  position: absolute;
  bottom: 200px;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  z-index: 3;
}

.mainHero_scrollLine {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
}


.introFlow {
  background: var(--cream);
  padding: var(--space-xl) 0 var(--space-lg);
}

.introFlow_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.introFlow_imageFrame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.introFlow_img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.introFlow_imageFrame:hover .introFlow_img {
  transform: scale(1.03);
}

.introFlow_imageCutout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.introFlow_text {
  padding: var(--space-md) 0;
}

.introFlow_text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.introFlow_text .btn {
  margin-top: 1.5rem;
}


.servicesSection {
  position: relative;
  margin: 0;
}

.servicesSection_cutoutTop {
  position: relative;
  height: 120px;
  background: var(--navy);
  clip-path: ellipse(65% 100% at 50% 0%);
  margin-bottom: -1px;
}

.servicesSection_bg {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

.servicesSection_cutoutBottom {
  position: relative;
  height: 120px;
  background: var(--navy);
  clip-path: ellipse(65% 100% at 50% 100%);
  margin-top: -1px;
}

.servicesSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.servicesSection_header {
  text-align: center;
  margin-bottom: 4rem;
}

.servicesSection_header .sectionLabel {
  justify-content: center;
}

.servicesSection_header .sectionLabel::before {
  display: none;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.serviceCard {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.serviceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.serviceCard:hover {
  background: rgba(245,240,232,0.08);
  border-color: rgba(232,168,56,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.serviceCard:hover::before {
  opacity: 1;
}

.serviceCard_icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(232,168,56,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.serviceCard:hover .serviceCard_icon {
  background: rgba(232,168,56,0.2);
}

.serviceCard_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.serviceCard_text {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.serviceCard_link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.serviceCard_link:hover {
  gap: 0.7rem;
  color: var(--amber-light);
}


.howSection {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.howSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.howSection_header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.howSection_intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-top: 1rem;
}

.howSteps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.howStep {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-mid);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.howStep:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(232,168,56,0.25);
}

.howStep_num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.howStep_content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.howStep_content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.cutoutVisual {
  position: relative;
  padding: var(--space-lg) 0;
}

.cutoutVisual_layer--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
}

.cutoutVisual_layer--navy::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(232,168,56,0.04);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cutoutVisual_layer--navy .cutoutVisual_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cutoutVisual_window {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cutoutVisual_window::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,232,0.1);
  pointer-events: none;
}

.cutoutVisual_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.cutoutVisual_text {
  padding: var(--space-md) 0;
}

.cutoutVisual_text p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}


.teamSection {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.teamSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.teamSection_text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.teamSection_images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  align-items: start;
}

.teamSection_imgWrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.teamSection_imgWrap--main {
  margin-top: 0;
}

.teamSection_imgWrap--accent {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
}

.teamSection_img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.teamSection_imgWrap:hover .teamSection_img {
  transform: scale(1.04);
}

.teamSection_imgWrap--main .teamSection_img {
  height: 360px;
}


.ctaSection {
  position: relative;
  background: var(--navy);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.ctaSection_cutout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.ctaSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  position: relative;
  z-index: 2;
}

.ctaSection_content {
  max-width: 600px;
  margin: 0 auto;
}

.ctaSection_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.ctaSection p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.ctaSection_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ctaSection_phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.8);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.25s ease;
  text-decoration: none;
}

.ctaSection_phone:hover {
  color: var(--amber);
}


.pageHero {
  min-height: 50vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.pageHero_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2f45 100%);
}

.pageHero_circle {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pageHero_content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) calc(var(--space-lg) + 60px);
  width: 100%;
}

.pageHero_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pageHero_sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245,240,232,0.7);
  max-width: 520px;
  line-height: 1.7;
}

.pageHero_cutout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.pageHero--story .pageHero_bg {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f45 100%);
}

.pageHero--services .pageHero_circle {
  background: radial-gradient(circle, rgba(232,93,58,0.1) 0%, transparent 70%);
}

.pageHero--guide .pageHero_circle {
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
}

.pageHero--contact .pageHero_circle {
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
}


.storySection {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.storySection_inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.storySection_lead {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.storyLead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-top: 1rem;
}

.storySection_body p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.storySection_imageWrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-lg);
}

.storySection_img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.storySection_imageCutout {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.15;
}


.valuesSection {
  position: relative;
  margin: 0;
}

.valuesSection_cutoutTop {
  height: 100px;
  background: var(--navy);
  clip-path: ellipse(60% 100% at 50% 0%);
  margin-bottom: -1px;
}

.valuesSection_bg {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

.valuesSection_cutoutBottom {
  height: 100px;
  background: var(--navy);
  clip-path: ellipse(60% 100% at 50% 100%);
  margin-top: -1px;
}

.valuesSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.valuesSection_inner .sectionLabel {
  display: flex;
  margin-bottom: 0.5rem;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.valueCard {
  padding: 2rem;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.valueCard:hover {
  background: rgba(245,240,232,0.08);
  border-color: rgba(232,168,56,0.2);
  transform: translateY(-4px);
}

.valueCard_icon {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.valueCard h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.valueCard p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.65;
}


.teamIntroSection {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.teamIntroSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.teamIntroSection_image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.teamIntroSection_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.teamIntroSection_image:hover .teamIntroSection_img {
  transform: scale(1.03);
}

.teamIntroSection_text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.teamIntroSection_text .btn {
  margin-top: 1.5rem;
}


.serviceDetail {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.serviceDetail--alt {
  background: var(--cream-dark);
}

.serviceDetail_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.serviceDetail_inner--imageRight .serviceDetail_image {
  order: 2;
}

.serviceDetail_inner--imageRight .serviceDetail_text {
  order: 1;
}

.serviceDetail_imageFrame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.serviceDetail_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.serviceDetail_imageFrame:hover .serviceDetail_img {
  transform: scale(1.03);
}

.serviceDetail_icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(13,27,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.serviceDetail_icon--amber {
  background: rgba(232,168,56,0.12);
  color: var(--amber);
}

.serviceDetail_icon--coral {
  background: rgba(232,93,58,0.10);
  color: var(--coral);
}

.serviceDetail_text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.serviceDetail_list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.serviceDetail_list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.serviceDetail_list li i {
  color: var(--amber);
  font-size: 0.8rem;
  flex-shrink: 0;
}


.serviceHighlight {
  position: relative;
}

.serviceHighlight_cutoutTop {
  height: 100px;
  background: var(--navy-mid);
  clip-path: ellipse(60% 100% at 50% 0%);
  margin-bottom: -1px;
}

.serviceHighlight_bg {
  background: var(--navy-mid);
  padding: var(--space-lg) 0;
}

.serviceHighlight_cutoutBottom {
  height: 100px;
  background: var(--navy-mid);
  clip-path: ellipse(60% 100% at 50% 100%);
  margin-top: -1px;
}

.serviceHighlight_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.serviceHighlight_text p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.serviceHighlight_cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.serviceHighlight_card {
  padding: 1.5rem;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  transition: all 0.3s ease;
}

.serviceHighlight_card:hover {
  background: rgba(245,240,232,0.08);
  border-color: rgba(232,168,56,0.2);
}

.serviceHighlight_card i {
  font-size: 1.25rem;
  color: var(--amber);
  margin-top: 0.1rem;
}

.serviceHighlight_card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.serviceHighlight_card p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin: 0;
}


.guideIntro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--cream);
}

.guideIntro_inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.guideIntro_lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  border-left: 4px solid var(--amber);
  padding-left: 1.5rem;
}

.guideSection {
  padding: 0 0 var(--space-xl);
  background: var(--cream);
}

.guideSection_inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.guideToc {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--cream-mid);
  box-shadow: var(--shadow-sm);
}

.guideToc_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.guideToc_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  counter-reset: toc;
}

.guideToc_list li {
  counter-increment: toc;
}

.guideToc_list a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
}

.guideToc_list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  flex-shrink: 0;
}

.guideToc_list a:hover {
  color: var(--navy);
  background: var(--cream-mid);
}

.guideSection_content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.guideArticle {
  padding: 2.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-mid);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  scroll-margin-top: calc(var(--nav-height) + 2rem);
}

.guideArticle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--amber), var(--coral));
  border-radius: 0 0 0 0;
}

.guideArticle_num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.guideArticle_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.guideArticle h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}

.guideArticle p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.guideArticle_tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(232,168,56,0.08);
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.guideArticle_tip i {
  color: var(--amber);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.guideArticle_tip p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}


.contactSection {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--cream);
}

.contactSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contactInfo_items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contactInfo_item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-mid);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.contactInfo_item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contactInfo_icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(232,168,56,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.contactInfo_item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contactInfo_item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.contactInfo_item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s;
}

.contactInfo_item a:hover {
  color: var(--amber);
}


.contactForm_wrap {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-mid);
  box-shadow: var(--shadow-md);
}

.contactForm_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contactForm_sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.formLabel {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.formInput {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  min-height: 44px;
}

.formInput:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,168,56,0.12);
}

.formInput::placeholder {
  color: var(--text-muted);
}

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

.formGroup--checkbox {
  margin-top: 0.5rem;
}

.formCheckbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.formCheckbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.formCheckbox_box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-xs);
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  margin-top: 2px;
}

.formCheckbox input:checked + .formCheckbox_box {
  background: var(--amber);
  border-color: var(--amber);
}

.formCheckbox input:checked + .formCheckbox_box::after {
  content: '✓';
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
}

.formCheckbox_label {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.formCheckbox_label a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.formCheckbox_label a:hover {
  color: var(--amber);
}

.formNote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


.mapSection {
  padding: var(--space-lg) 0;
  background: var(--cream);
}

.mapSection_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.mapSection_inner .sectionTitle {
  margin-bottom: 2rem;
}

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


.officeGallery {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--cream);
}

.officeGallery_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.officeGallery_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.officeGallery_item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.officeGallery_item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.officeGallery_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.officeGallery_item--main .officeGallery_img {
  height: 280px;
}

.officeGallery_item:hover .officeGallery_img {
  transform: scale(1.04);
}


.thanksMain {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  padding-top: calc(var(--nav-height) + var(--space-xl));
  min-height: 80vh;
}

.thanksMain_inner {
  text-align: center;
  max-width: 500px;
}

.thanksMain_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232,168,56,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--amber);
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 12px rgba(232,168,56,0.06);
}

.thanksMain_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.thanksMain_sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}


.legalMain {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.legalMain_inner {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.legalMain_header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-mid);
}

.legalMain_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legalMain_updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.legalMain_body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legalLead {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.75;
  font-weight: 400;
}

.legalMain_body h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-mid);
}

.legalMain_body p {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.legalTerm {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(13,27,42,0.2);
}

.legalDefinition {
  background: rgba(232,168,56,0.06);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 0.5rem 0;
}

.legalDefinition strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.legalDefinition p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

.legalList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
}

.legalList li {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.65;
  position: relative;
  padding-left: 1.25rem;
}

.legalList li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}


.legalClause {
  padding: 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-mid);
}

.legalClause_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legalClause_letter {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xs);
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.legalClause p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legalClause p:last-child {
  margin-bottom: 0;
}


.cookieIntro, .cookieManagement, .cookieThirdParty, .cookieContact {
  padding: 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-mid);
}

.cookieIntro h2, .cookieManagement h2, .cookieThirdParty h2, .cookieContact h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cookieIntro p, .cookieManagement p, .cookieThirdParty p, .cookieContact p {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.cookieTable_section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cookieCategory {
  padding: 1.5rem 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-mid);
  margin-bottom: 1rem;
}

.cookieCategory_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.cookieCategory_header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.cookieBadge {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.cookieBadge--required {
  background: rgba(232,168,56,0.15);
  color: var(--navy);
  border: 1px solid rgba(232,168,56,0.3);
}

.cookieBadge--optional {
  background: var(--cream-mid);
  color: var(--text-mid);
  border: 1px solid var(--cream-mid);
}

.cookieDetail {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.cookieDetail p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
}

.cookieDetail strong {
  color: var(--text-dark);
}

.cookieCategory p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cookieCategory p:last-child {
  margin-bottom: 0;
}


.pageFooter {
  background: var(--navy);
  padding: var(--space-lg) 0 0;
  margin-top: auto;
}

.pageFooter_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.pageFooter_logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.pageFooter_logoText {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.pageFooter_logoText span {
  color: var(--amber);
}

.pageFooter_tagline {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pageFooter_address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pageFooter_address p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
}

.pageFooter_address i {
  color: var(--amber);
  font-size: 0.85rem;
  width: 16px;
}

.pageFooter_address a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.25s;
}

.pageFooter_address a:hover {
  color: var(--amber);
}

.pageFooter_nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pageFooter_navTitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}

.pageFooter_navList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pageFooter_navList a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 0.2rem 0;
  display: inline-block;
}

.pageFooter_navList a:hover {
  color: var(--amber);
}

.pageFooter_bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 1.5rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pageFooter_bottom p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  margin: 0;
}

.pageFooter_bottom a {
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.pageFooter_bottom a:hover {
  color: var(--amber);
}


.cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(245,240,232,0.1);
  overflow: hidden;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookieConsent.isVisible {
  transform: translateY(0);
  opacity: 1;
}

.cookieConsent_body {
  padding: 1.5rem;
}

.cookieConsent_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.cookieConsent_text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.cookieConsent_text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookieConsent_buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookieConsent_btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 44px;
}

.cookieConsent_btn--accept {
  background: var(--amber);
  color: var(--navy);
}

.cookieConsent_btn--accept:hover {
  background: var(--amber-light);
}

.cookieConsent_btn--reject {
  background: rgba(245,240,232,0.08);
  color: rgba(245,240,232,0.7);
  border: 1px solid rgba(245,240,232,0.12);
}

.cookieConsent_btn--reject:hover {
  background: rgba(245,240,232,0.12);
  color: var(--cream);
}

.cookieConsent_btn--customize {
  background: transparent;
  color: rgba(245,240,232,0.5);
  font-size: 0.8rem;
  padding: 0.4rem;
}

.cookieConsent_btn--customize:hover {
  color: var(--amber);
}

.cookieConsent_expand {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 1.25rem 1.5rem;
  background: rgba(245,240,232,0.03);
  display: none;
}

.cookieConsent_expand.isOpen {
  display: block;
}

.cookieConsent_option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}

.cookieConsent_option:last-child {
  border-bottom: none;
}

.cookieConsent_optionLabel {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.8);
}

.cookieConsent_toggle {
  position: relative;
  width: 36px;
  height: 20px;
}

.cookieConsent_toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookieConsent_toggleSlider {
  position: absolute;
  inset: 0;
  background: rgba(245,240,232,0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookieConsent_toggleSlider::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookieConsent_toggle input:checked + .cookieConsent_toggleSlider {
  background: var(--amber);
}

.cookieConsent_toggle input:checked + .cookieConsent_toggleSlider::after {
  transform: translateX(16px);
}

.cookieConsent_toggle input:disabled + .cookieConsent_toggleSlider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookieConsent_saveBtn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

.cookieConsent_saveBtn:hover {
  background: var(--amber-light);
}


@media (max-width: 1100px) {
  .valuesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .storySection_inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .storySection_lead {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
  }

  .introFlow_inner,
  .cutoutVisual_layer--navy .cutoutVisual_inner,
  .teamSection_inner,
  .teamIntroSection_inner,
  .serviceDetail_inner,
  .serviceHighlight_inner,
  .contactSection_inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .serviceDetail_inner--imageRight .serviceDetail_image,
  .serviceDetail_inner--imageRight .serviceDetail_text {
    order: unset;
  }

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

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

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

  .guideToc {
    position: static;
  }

  .pageFooter_inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .teamSection_imgWrap--accent {
    margin-top: 0;
  }

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

  .officeGallery_item--main {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 640px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.25rem;
  }

  .siteHeader_inner {
    padding: 1rem 1.25rem;
  }

  .siteHeader_nav {
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column;
  }

  .mainHero_content {
    padding: var(--space-lg) var(--space-md) calc(var(--space-lg) + 100px);
  }

  .mainHero_scroll {
    display: none;
  }

  .mainHero_circle--lg {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
  }

  .introFlow_img {
    height: 300px;
  }

  .cutoutVisual_img {
    height: 280px;
  }

  .serviceDetail_img,
  .teamIntroSection_img {
    height: 280px;
  }

  .storySection_img {
    height: 250px;
  }

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

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

  .officeGallery_item--main {
    grid-column: auto;
  }

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

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

  .contactForm_wrap {
    padding: 1.5rem;
  }

  .cookieConsent {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
  }

  .pageFooter_bottom {
    flex-direction: column;
    text-align: center;
  }

  .legalClause {
    padding: 1.25rem;
  }

  .cookieCategory {
    padding: 1.25rem;
  }

  .cookieCategory_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .guideArticle {
    padding: 1.5rem;
  }

  .guideArticle_num {
    font-size: 2.5rem;
    top: 0.5rem;
    right: 0.75rem;
  }

  .howStep {
    flex-direction: column;
    gap: 0.75rem;
  }

  .howStep_num {
    font-size: 1.8rem;
    width: auto;
  }

  .serviceHighlight_inner {
    gap: 2rem;
  }

  .serviceHighlight_cards {
    margin-top: 0;
  }
}


.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}