/* ============================================
   DESIGN SYSTEM — CSS Variables & Reset
   ============================================ */
:root {
  --bg:       #F8F6F1;
  --bg-light: #F0EDE6;
  --bg-card:  #FFFEFA;
  --accent:   #8C3A4B;
  --accent-dim: rgba(140, 58, 75, .10);
  --gold:     #C5A572;
  --gold-light: #D4BA8E;
  --gold-dim: rgba(197,165,114,.15);
  --gold-line: rgba(197,165,114,.40);
  --text:     #1A1A1A;
  --text-60:  #4A4A4A;
  --text-30:  #8A8A8A;
  --white:    #FFFFFF;
  --border:   rgba(60, 50, 30, .08);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ============================================
   @font-face — Self-hosted WOFF2
   ============================================ */
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }

@font-face { font-family: 'DM Sans'; src: url('fonts/DMSans-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('fonts/DMSans-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('fonts/DMSans-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('fonts/DMSans-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

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

/* ============================================
   Typography
   ============================================ */
.overtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2rem;
}

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

.gold { color: var(--gold); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, border-color .3s;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(140, 58, 75, .25), 0 0 0 3px var(--gold-dim);
}

.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: padding .4s var(--ease-out), background .4s;
}

.nav--scrolled {
  padding: .7rem 0;
  background: rgba(248, 246, 241, .90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.lang-switcher__btn {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  color: var(--text-60);
  transition: color .3s, background .3s;
  letter-spacing: 0.05em;
}

.lang-switcher__btn:hover {
  color: var(--text);
}

.lang-switcher__btn.is-active {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-60);
  transition: color .3s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold) !important;
  transition: background .3s, color .3s !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav__overlay {
  display: none;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero__bg-lines {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 500px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold) 50%, var(--gold-line) 80%, transparent);
  pointer-events: none;
}

.hero__bg-lines span { display: none; }

.hero__bg-lines::before,
.hero__bg-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__bg-lines::before {
  left: 0;
}

.hero__bg-lines::after {
  right: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__overtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-60);
  max-width: 540px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* .hero__scroll {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--gold-line);
  position: relative;
}

.hero__scroll-dot {
  width: 7px;
  height: 7px;
  background: var(--text);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: 0; opacity: 1; }
  60%  { top: 38px; opacity: 0; }
  100% { top: 0; opacity: 0; }
} */

/* .hero__scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-30);
} */

/* ============================================
   Utility modifiers
   ============================================ */
.section__title--center { text-align: center; }
.section__title--right  { text-align: right; }
.section__title--wide   { max-width: 80%; }

/* ============================================
   About
   ============================================ */
.about__header {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 0;
}

.about__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 3px;
  height: 60px;
  background: var(--gold);
}

.about__rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-line) 60%, transparent);
  max-width: 300px;
  margin: 3rem 0;
}

.about__body {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}

.about__col--right {
  padding-top: 3rem;
}

.about__col p {
  color: var(--text-60);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   Principles
   ============================================ */
.principles__list {
  max-width: 800px;
}

.principles__item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gold-line);
}

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

.principles__check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.principles__item p {
  color: var(--text-60);
  font-size: 0.95rem;
  line-height: 1.7;
}

.principles__item strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   Catalog
   ============================================ */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.catalog__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(60, 50, 30, .06);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}

.catalog__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(197,165,114,.15);
}

.catalog__num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.catalog__card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.catalog__card p {
  color: var(--text-60);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.catalog__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: letter-spacing .3s var(--ease-out);
}

.catalog__link:hover {
  letter-spacing: 0.15em;
}

/* ============================================
   Why Us
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .4s;
  position: relative;
}

.why__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.why__card:hover {
  border-color: var(--gold-dim);
}

.why__card:hover::after {
  opacity: 1;
}

.why__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.why__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why__card p {
  color: var(--text-60);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   Process
   ============================================ */
.process__header {
  margin-bottom: 1rem;
}

.process__header .overtitle {
  text-align: right;
}

.process__timeline {
  position: relative;
  margin-top: 4rem;
}

.process__line {
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 10%, var(--gold) 50%, var(--gold-line) 90%, transparent);
  pointer-events: none;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.process__step {
  text-align: center;
  padding: 0 0.5rem;
}

.process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: background .3s, color .3s;
}

.process__step:hover .process__num {
  background: var(--gold);
  color: var(--white);
}

.process__step p {
  font-size: 0.88rem;
  color: var(--text-60);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================
   Contact
   ============================================ */
.contact__header {
  margin-bottom: 3rem;
}

.contact__header .overtitle {
  text-align: center;
}

.contact__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  align-items: start;
}

.contact__form-wrap {
  position: relative;
}

.contact__form-wrap::before,
.contact__form-wrap::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 0;
}

.contact__form-wrap::before {
  top: -1.5rem;
  left: -1.5rem;
  border-left: 2px solid var(--gold-line);
  border-top: 2px solid var(--gold-line);
}

.contact__form-wrap::after {
  bottom: -1.5rem;
  right: -1.5rem;
  border-right: 2px solid var(--gold-line);
  border-bottom: 2px solid var(--gold-line);
}

.form__group {
  margin-bottom: 1.2rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-60);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color .3s;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form__input.is-error,
.form__select.is-error,
.form__textarea.is-error {
  border-color: #e74c3c;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--bg);
  color: var(--text);
}

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form__error {
  display: block;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 0.35rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form__checkbox span {
  font-size: 0.85rem;
  color: var(--text-60);
  line-height: 1.5;
}

.form__checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form__checkbox a:hover {
  opacity: 0.7;
}

.form__submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s, opacity .3s;
}

.form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(140, 58, 75, .25);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Contact Info Column */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--gold);
  border-radius: 8px 8px 0 0;
  padding: 1.5rem;
}

.contact__card-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__card-title svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact__card p,
.contact__card a {
  font-size: 0.9rem;
  color: var(--text-60);
  line-height: 1.7;
}

.contact__card a {
  transition: color .3s;
}

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

.contact__map {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold-line);
  padding: 4px;
  background: var(--bg-card);
}

.contact__map iframe {
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(.85);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--gold-line);
  padding: 4rem 0 2rem;
}

.footer__top {
  text-align: center;
  padding-bottom: 2.5rem;
}

.footer__brand .nav__logo {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-60);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold) 50%, var(--gold-line) 80%, transparent);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.footer__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.footer__columns {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-bottom: 2.5rem;
}

.footer__col {
  text-align: center;
}

.footer__col + .footer__col {
  border-left: 1px solid var(--gold-line);
  padding-left: 4rem;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-60);
  transition: color .3s;
}

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

.footer__bottom {
  border-top: 1px solid var(--gold-line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer__legal-info {
  font-size: 0.7rem;
  color: var(--text-30);
  line-height: 1.8;
  text-align: left;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-30);
  text-align: right;
  white-space: nowrap;
}

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ============================================
   Responsive — 1024px (Tablet)
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 5rem 0; }

  /* About */
  .about__body {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about__col--right {
    padding-top: 1.5rem;
  }

  /* Catalog */
  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .catalog__card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 1.5rem;
    align-items: start;
  }

  .catalog__num {
    grid-row: 1 / -1;
    align-self: center;
    font-size: 3rem;
    margin-bottom: 0;
  }

  .catalog__card h3 { margin-bottom: 0.5rem; }
  .catalog__card p { margin-bottom: 0.8rem; }

  /* Why Us */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process */
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process__line { display: none; }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__form-wrap::before,
  .contact__form-wrap::after { display: none; }

  /* Footer */
  .footer__columns {
    gap: 2.5rem;
  }
  .footer__col + .footer__col {
    padding-left: 2.5rem;
  }
}

/* ============================================
   Responsive — 768px (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    border-left: 1px solid var(--gold-line);
    transition: right .35s var(--ease-out);
    z-index: 1001;
  }

  .nav__links.is-open {
    right: 0;
  }

  .nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--gold-line);
  }

  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
  }

  .nav__cta {
    margin-top: 1rem;
    text-align: center;
    display: block !important;
  }

  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
  }

  .nav__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* About */
  .about__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__col--right {
    padding-top: 0;
  }
  .about__header::before {
    height: 40px;
  }

  /* Process */
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__header .overtitle,
  .section__title--right {
    text-align: left;
  }

  /* Form */
  .form__row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__columns {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .footer__col {
    flex: 0 0 auto;
  }
  .footer__col + .footer__col {
    border-left: none;
    padding-left: 0;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__legal-info {
    text-align: center;
  }
  .footer__bottom p {
    text-align: center;
  }
}

/* ============================================
   Responsive — 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 3.5rem 0; }

  .hero__scroll { display: none; }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn { text-align: center; }

  /* Why Us */
  .why__grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Policy Pages (Privacy, Terms)
   ============================================ */
.policy {
  padding: 6rem 0 4rem;
  background: var(--bg);
  min-height: 100vh;
}

.policy__content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
  transition: opacity .3s;
}

.policy__back:hover { opacity: .7; }

.policy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.policy .policy__date {
  font-size: 0.85rem;
  color: var(--text-60);
  margin-bottom: 3rem;
}

.policy h2 {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.policy p {
  color: var(--text-60);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy ul, .policy ol {
  color: var(--text-60);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.policy ol { list-style: decimal; }

.policy a {
  color: var(--accent);
  text-decoration: underline;
}

.policy a:hover { opacity: .7; }

.policy table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.policy th, .policy td {
  text-align: left;
  padding: 0.7rem;
  border: 1px solid var(--border);
  color: var(--text-60);
}

.policy th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
}

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