:root {
  --bg: #f7f3ec;
  --bg-soft: #fbf8f2;
  --bg-card: #ffffff;
  --ink: #1a1612;
  --ink-soft: #423a30;
  --ink-muted: #8c7f70;
  --line: #ddd4c4;
  --line-soft: #ebe4d5;
  --accent: #8b6f47;
  --accent-deep: #6b5232;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.brand {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-mark {
  font-size: 10px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1px;
}

.brand-name {
  font-style: italic;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  color: var(--ink);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-trigger {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s ease;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a:hover,
.nav-trigger:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
}

.dropdown {
  position: relative;
}

.nav-trigger::after {
  content: " ▾";
  font-size: 8px;
  color: var(--ink-muted);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 32px rgba(26, 22, 18, 0.08);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 9px 18px !important;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

.hero,
.home-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 14s infinite;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.62));
}

.hero-slide-1 {
  background-image: url("Tailor At Work.png");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("Fashion Design Studio.png");
  animation-delay: 7s;
}

@keyframes heroFade {
  0% { opacity: 0; }
  7% { opacity: 1; }
  43% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.home-hero > .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }
  .hero-slide-1 {
    opacity: 1;
  }
}

.hero-meta,
.home-hero-meta,
.section-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.home-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.home-hero-meta::before,
.section-meta::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.home-hero-meta::before {
  width: 32px;
}

.hero-title,
.home-hero-title,
.section-title,
h3 {
  font-family: "IM Fell English", serif;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.hero-title {
  margin-top: 24px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  margin-bottom: 32px;
}

.home-hero-title {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  margin-bottom: 40px;
}

.hero-title em,
.home-hero-title em,
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-subtitle,
.home-hero-lead {
  font-family: "IM Fell English", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 760px;
}

.home-hero-lead {
  margin-bottom: 48px;
  font-size: clamp(19px, 2.2vw, 25px);
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin-top: 18px;
  margin-bottom: 32px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  max-width: 880px;
}

.prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
}

.prose p {
  margin-bottom: 20px;
}

.prose strong {
  color: var(--ink);
}

.prose h3,
h3 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 22px;
}

.prose-list {
  list-style: none;
  margin: 16px 0 24px;
}

.prose-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--line-soft);
}

.prose-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 56px 0;
}

.highlight-card {
  background: var(--bg-card);
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.highlight-num {
  font-family: "IM Fell English", serif;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
}

.highlight-card h3 {
  margin: 0 0 10px;
}

.highlight-tag {
  font-family: "IM Fell English", serif;
  font-style: italic;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 12px;
}

.highlight-card p {
  margin-bottom: 20px;
}

.h-cta {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.highlight-card--photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.highlight-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(248, 246, 242, 0.82), rgba(248, 246, 242, 0.9));
  z-index: 0;
}

.highlight-card--photo > * {
  position: relative;
  z-index: 1;
}

.highlight-card--wash {
  background-image: url("Industrial Factory Machinery.png");
}

/* ─── How we work — colored section ─────────────────────────────────────────── */
.section--how {
  background: #5C5B46;
}

.section--how .section-meta,
.section--how .section-title,
.section--how .section-title em,
.section--how .prose p,
.section--how .stat-num,
.section--how .stat-label {
  color: #F7F7F6;
}

.section--how .section-meta::before {
  background: #F7F7F6;
}

.section--how .stats-bar {
  border-top-color: rgba(247, 247, 246, 0.25);
  border-bottom-color: rgba(247, 247, 246, 0.25);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 80px 0;
}

.stats-bar > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stat-num {
  font-family: "IM Fell English", serif;
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.cat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.cat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.cat-arrow {
  color: var(--ink-muted);
  transition: transform 0.2s;
}

.cat-item:hover .cat-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.cat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
}

.cat-item:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 32px;
}

.cat-item:nth-child(even) {
  padding-left: 32px;
}

.cat-num {
  font-family: "IM Fell English", serif;
  color: var(--accent);
}

.cat-name {
  flex: 1;
  font-family: "IM Fell English", serif;
  font-size: 22px;
}

.quote-block {
  margin: 48px 0;
  padding: 36px 40px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
}

.quote-block p {
  font-family: "IM Fell English", serif;
  font-style: italic;
  font-size: 22px;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.img-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--line);
  min-height: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
}

.img-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.img-desc {
  font-family: "IM Fell English", serif;
  font-style: italic;
  color: var(--ink-soft);
}

.founders-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 56px 0;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.office-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px;
}

.office-country {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.office-card h4 {
  font-family: "IM Fell English", serif;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.office-company {
  font-family: "IM Fell English", serif;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.office-photo {
  height: 146px;
  border: 1px solid var(--line);
  margin: 12px 0 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px 12px;
  filter: sepia(0.78) contrast(1.08) saturate(0.86);
  background-size: cover;
  background-position: center;
}

.office-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.58) 100%);
}

.office-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}

.office-photo span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.office-photo-shanghai {
  background-image:
    linear-gradient(135deg, rgba(69, 53, 35, 0.52) 0%, rgba(99, 76, 50, 0.24) 50%, rgba(38, 28, 16, 0.62) 100%),
    url("https://images.unsplash.com/photo-1474181487882-5abf3f0ba6c2?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
}

.office-photo-hochiminh {
  background-image:
    linear-gradient(145deg, rgba(80, 57, 34, 0.56) 0%, rgba(111, 85, 58, 0.26) 52%, rgba(43, 31, 19, 0.64) 100%),
    url("https://images.unsplash.com/photo-1583417319070-4a69db38a482?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
}

.office-photo-paris {
  background-image:
    linear-gradient(130deg, rgba(74, 55, 35, 0.54) 0%, rgba(109, 82, 54, 0.24) 54%, rgba(41, 30, 20, 0.65) 100%),
    url("https://images.unsplash.com/photo-1431274172761-fca41d930114?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
}

.office-card p {
  margin: 0 0 12px;
}

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

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.founder-photo {
  min-height: 280px;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  padding: 0;
  margin: 0;
}

.founder-photo:has(img) {
  padding: 0;
}

.founder-info {
  padding: 24px;
}

.founder-name {
  font-family: "IM Fell English", serif;
  font-size: 26px;
}

.founder-role {
  font-family: "IM Fell English", serif;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 18px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 32px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: "IM Fell English", serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand em {
  color: var(--accent);
}

.footer-tagline {
  font-family: "IM Fell English", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* ─── Video embed ───────────────────────────────────────────────────────────── */
.section--video {
  border-top: 1px solid var(--line);
}

.video-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ─── Contact form ──────────────────────────────────────────────────────────── */
.section--form {
  border-top: 1px solid var(--line);
}

.form-header {
  margin-bottom: 40px;
}

.section-meta-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-title {
  font-family: "IM Fell English", serif;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.form-title em {
  color: var(--accent);
  font-style: italic;
}

.form-subtitle {
  color: var(--ink-muted);
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row--2 > .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

.form-field label span {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
}

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #c0392b;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.6;
}

.field-error {
  font-size: 11px;
  color: #c0392b;
  min-height: 14px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-submit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 13px 32px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.form-submit:hover {
  opacity: 0.82;
}

.form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-status {
  font-size: 13px;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c0392b;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    z-index: 20;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    display: none;
    min-width: 0;
    background: transparent;
    padding-left: 14px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    display: inline-block;
  }

  .highlight-grid,
  .founders-grid,
  .contact-grid,
  .img-grid,
  .footer-top,
  .cat-list {
    grid-template-columns: 1fr;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

  .form-row,
  .form-row--2 {
    flex-direction: column;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cat-item:nth-child(odd),
  .cat-item:nth-child(even) {
    border-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .home-hero,
  .hero {
    padding: 60px 0 50px;
  }

  .section {
    padding: 56px 0;
  }

  .container,
  .container-narrow {
    padding: 0 22px;
  }
}

@media (max-width: 600px) {
  .site-nav,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quote-block {
    padding: 24px;
  }

  .quote-block p {
    font-size: 18px;
  }
}
