/* ==========================================================================
   Askcircle Premium Design System & Stylesheet
   ========================================================================== */

/* --- CSS Variables & Color Tokens --- */
:root {
  /* Color Palette */
  --color-raw-red: #E8392A;
  --color-raw-black: #0A0A0A;
  --color-raw-paper: #F2EFE8;
  --color-raw-ink: #3A3A38;
  --color-raw-rule: #D4D0C8;
  --color-raw-white: #FFFFFF;

  /* Active Color Mapping (Default Light Mode) */
  --color-bg: var(--color-raw-paper);
  --color-surface: var(--color-raw-white);
  --color-text-primary: var(--color-raw-black);
  --color-text-secondary: var(--color-raw-ink);
  --color-border: var(--color-raw-rule);
  --color-red: var(--color-raw-red);

  /* Fonts */
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-editorial: 'Cormorant', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --grid-gutter: 80px;
  --section-padding: 120px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

/* --- Layout Utilities --- */
.max-width-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  width: 100%;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

.relative-container {
  position: relative;
}

/* --- Typography System --- */
.label-style {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--color-red);
}

.font-editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* --- Internationalization (RTL) Styling --- */
html[dir="rtl"] {
  --font-display: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-editorial: 'Noto Naskh Arabic', Georgia, serif;
  text-align: right;
}

/* Disable uppercase and letter-spacing for Arabic scripts */
html[dir="rtl"] .label-style {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 600;
}

/* --- Navigation --- */
#nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid transparent;
}

#nav-bar.scrolled {
  background-color: rgba(242, 239, 232, 0.9);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-color: var(--color-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-red);
}

.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
  background-color: rgba(10, 10, 10, 0.05);
}

.lang-opt {
  opacity: 0.4;
  transition: var(--transition-fast);
}

.lang-opt.active {
  opacity: 1;
  font-weight: 700;
}

.lang-divider {
  opacity: 0.3;
}

/* --- Hero Section --- */
.hero-section {
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero-content {
  grid-column: 1 / span 8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

html[dir="rtl"] .hero-content {
  grid-column: 1 / span 8;
  align-items: flex-start;
  text-align: right;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--font-scale-hero, clamp(64px, 8.5vw, 110px));
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.hero-body-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 540px;
}

html[dir="rtl"] .hero-body-text {
  margin-left: auto;
}

/* Hero Signature Spatial Circle (Echo of Logo) */
.hero-signature-container {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
}

html[dir="rtl"] .hero-signature-container {
  right: auto;
  left: -100px;
}

.hero-circle-svg {
  width: 100%;
  height: 100%;
}

.animated-circle {
  stroke-dasharray: 1131;
  stroke-dashoffset: 1131;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animated-circle.draw {
  stroke-dashoffset: 0;
}

.animated-dot {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.8s;
}

.animated-circle.draw ~ .animated-dot {
  opacity: 1;
  transform: scale(1);
}

/* --- Manifesto / Approach Section --- */
.approach-section {
  background-color: var(--color-bg);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  border-bottom: 0.5px solid var(--color-border);
}

.approach-left {
  grid-column: 1 / span 6;
}

.approach-right {
  grid-column: 7 / span 6;
  display: flex;
  align-items: center;
}

.approach-eyebrow {
  margin-bottom: 24px;
}

.approach-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.approach-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

html[dir="rtl"] .approach-left {
  grid-column: 7 / span 6;
  text-align: right;
}

html[dir="rtl"] .approach-right {
  grid-column: 1 / span 6;
  text-align: right;
}

/* --- Marquee Section --- */
.marquee-section {
  background-color: var(--color-raw-black);
  color: var(--color-raw-white);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 0.5px solid var(--color-raw-ink);
  border-bottom: 0.5px solid var(--color-raw-ink);
}

.marquee-wrapper {
  display: flex;
  width: 100%;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  padding-left: 10px;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}

html[dir="rtl"] .marquee-track span {
  text-transform: none;
  letter-spacing: normal;
}

.marquee-track .dot {
  color: var(--color-red);
  margin: 0 32px;
  font-size: 10px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

html[dir="rtl"] .marquee-track {
  animation: marquee-rtl 25s linear infinite;
}

@keyframes marquee-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* --- Work (Réalisations) Section --- */
.work-section {
  background-color: var(--color-bg);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-title {
  margin-bottom: 60px;
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gutter);
}

html[dir="rtl"] .work-grid {
  direction: ltr;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-item.col-7 { grid-column: span 7; }
.work-item.col-5 { grid-column: span 5; }
.work-item.col-6 { grid-column: span 6; }

.image-wrapper {
  overflow: hidden;
  position: relative;
  background-color: rgba(10, 10, 10, 0.03);
}

.row-1 .col-7 .image-wrapper { aspect-ratio: 7 / 5; }
.row-1 .col-5 .image-wrapper { aspect-ratio: 5 / 7; }
.row-2 .col-6 .image-wrapper { aspect-ratio: 1 / 1; }
.row-3 .col-5 .image-wrapper { aspect-ratio: 5 / 7; }
.row-3 .col-7 .image-wrapper { aspect-ratio: 7 / 5; }

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover img {
  transform: scale(1.03);
}

.work-tag {
  align-self: flex-start;
  color: var(--color-text-secondary);
}

html[dir="rtl"] .work-tag {
  direction: rtl;
  text-align: right;
  align-self: flex-start;
}

/* --- Services Section (Accordion Drawer Style) --- */
.services-section {
  background-color: var(--color-surface);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
  transition: background-color 0.4s ease;
}

.services-main-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

html[dir="rtl"] .services-main-headline {
  text-align: right;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  border-bottom: 0.5px solid var(--color-border);
  transition: background-color 0.4s ease, padding 0.4s ease;
  position: relative;
  cursor: pointer;
  display: block;
}

.service-row:first-child {
  border-top: 0.5px solid var(--color-border);
}

/* Row Summary Header */
.service-row-summary {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.service-num {
  grid-column: span 2;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  opacity: 0.6;
  padding-top: 8px;
}

.service-title-col {
  grid-column: span 5;
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-desc-col {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.service-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.service-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-raw-white);
  background-color: var(--color-red);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

html[dir="rtl"] .service-pill {
  text-transform: none;
  letter-spacing: normal;
}

.service-chevron {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.4;
  color: var(--color-text-primary);
  flex-shrink: 0;
}

/* Service Row Expandable Drawer */
.service-row-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), margin 0.6s ease;
  position: relative;
  z-index: 2;
  border-top: 0.5px dashed transparent;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  padding-bottom: 48px;
  width: 100%;
}

.service-details-label {
  grid-column: span 2;
  color: var(--color-red);
  padding-top: 4px;
}

.service-details-specs {
  grid-column: span 5;
}

.service-details-options {
  grid-column: span 5;
}

.service-details-specs ul,
.service-details-options ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-details-specs li,
.service-details-options li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.service-details-specs strong,
.service-details-options strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Service Row Hover and Active Expanded states */
.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-raw-black);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-row:hover::before,
.service-row.expanded::before {
  opacity: 1;
}

.service-row:hover,
.service-row.expanded {
  padding-left: 24px;
  padding-right: 24px;
}

.service-row:hover *,
.service-row.expanded * {
  color: var(--color-raw-white) !important;
}

.service-row:hover .service-num,
.service-row.expanded .service-num {
  color: var(--color-red) !important;
  opacity: 1;
}

.service-row:hover .service-pill,
.service-row.expanded .service-pill {
  background-color: var(--color-red) !important;
  color: var(--color-raw-white) !important;
}

.service-row:hover .service-chevron,
.service-row.expanded .service-chevron {
  opacity: 1;
  color: var(--color-raw-white) !important;
}

/* Expanded state drawer animation */
.service-row.expanded .service-row-details {
  max-height: 400px;
  opacity: 1;
  margin-top: 10px;
  padding-top: 32px;
  border-top-color: rgba(255, 255, 255, 0.15);
}

.service-row.expanded .service-chevron {
  transform: rotate(180deg);
}

/* Services RTL */
html[dir="rtl"] .service-row-summary,
html[dir="rtl"] .service-details-grid {
  direction: rtl;
}

html[dir="rtl"] .service-desc-col {
  align-items: flex-start;
}

html[dir="rtl"] .service-chevron {
  margin-right: auto;
  margin-left: 0;
}

/* --- L'Atelier & Finitions Section --- */
.atelier-section {
  background-color: var(--color-bg);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  border-bottom: 0.5px solid var(--color-border);
}

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

.atelier-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-right: 20px;
  transition: var(--transition-smooth);
}

.atelier-item:not(:last-child) {
  border-right: 0.5px solid var(--color-border);
}

html[dir="rtl"] .atelier-item:not(:last-child) {
  border-right: none;
  border-left: 0.5px solid var(--color-border);
  padding-right: 0;
  padding-left: 20px;
}

html[dir="rtl"] .atelier-item {
  align-items: flex-start;
  text-align: right;
}

.atelier-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.atelier-visual svg {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.atelier-item:hover .atelier-visual svg {
  transform: scale(1.1) rotate(5deg);
}

.atelier-tag {
  margin-bottom: 8px;
}

.atelier-item-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

.atelier-item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* --- Statement Section --- */
.statement-section {
  background-color: var(--color-raw-black);
  color: var(--color-raw-white);
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement-echo-circle-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.04;
}

.statement-circle-svg {
  width: 100%;
  height: 100%;
}

.statement-quote {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--color-raw-white);
}

.statement-attribution {
  color: var(--color-red);
}

/* --- Contact Section --- */
.contact-section {
  background-color: var(--color-bg);
  padding-top: var(--section-padding);
  padding-bottom: 160px;
}

.contact-header-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-red);
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

.contact-info-col { grid-column: span 6; }
.contact-form-col { grid-column: span 6; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

html[dir="rtl"] .contact-title {
  text-align: right;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.contact-email-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--color-text-primary);
  padding-bottom: 8px;
}

.contact-email-link:hover {
  color: var(--color-red);
  border-bottom-color: var(--color-red);
}

.contact-phone-link {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-text-secondary);
}

.contact-phone-link:hover {
  color: var(--color-red);
}

.contact-promise {
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* Premium Form Styling */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-form label {
  color: var(--color-red);
}

.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form input[type="tel"],
.premium-form select,
.premium-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  outline: none;
  transition: var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.premium-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A3A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px;
  padding-right: 24px;
}

html[dir="rtl"] .premium-form select {
  background-position: left center;
  padding-right: 0;
  padding-left: 24px;
}

.premium-form input[type="text"]:focus,
.premium-form input[type="email"]:focus,
.premium-form input[type="tel"]:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-bottom-color: var(--color-text-primary);
}

.premium-form textarea {
  resize: vertical;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-raw-black);
  color: var(--color-raw-white);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-fast);
  border: 1px solid var(--color-raw-black);
  align-self: flex-start;
}

.form-submit-btn:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.submit-arrow {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .submit-arrow {
  transform: translateX(4px);
}

html[dir="rtl"] .form-submit-btn:hover .submit-arrow {
  transform: translateX(-4px);
}

.form-status-msg {
  font-size: 14px;
  margin-top: 20px;
  transition: var(--transition-fast);
  font-weight: 500;
}

.form-status-msg.success { color: #2e7d32; }
.form-status-msg.error { color: var(--color-red); }

/* --- Footer --- */
#footer {
  background-color: var(--color-raw-black);
  color: rgba(255, 255, 255, 0.4);
  padding: 40px 0;
  font-size: 13px;
  border-top: 0.5px solid var(--color-raw-ink);
}

.footer-container {
  display: flex;
  justify-content: center;
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */

/* --- Tablet Breakpoint (max-width: 1024px) --- */
@media (max-width: 1024px) {
  :root {
    --grid-gutter: 40px;
    --section-padding: 100px;
  }
  
  .max-width-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section {
    padding-top: 140px;
  }

  .hero-content {
    grid-column: 1 / span 10;
  }

  .service-row-summary {
    gap: 32px;
  }

  .atelier-grid {
    gap: 32px;
  }

  .contact-grid {
    gap: 40px;
  }
}

/* --- Mobile Breakpoint (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --grid-gutter: 24px;
    --section-padding: 80px;
  }
  
  .max-width-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Nav Mobile */
  #nav-bar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .nav-logo .logo-text {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 13px;
  }

  /* Hero Mobile */
  .hero-section {
    padding-top: 120px;
    min-height: auto;
  }
  
  .hero-content {
    grid-column: 1 / span 12;
  }

  html[dir="rtl"] .hero-content {
    grid-column: 1 / span 12;
  }

  .hero-signature-container {
    width: 250px;
    height: 250px;
    top: 5%;
    right: -50px;
  }

  html[dir="rtl"] .hero-signature-container {
    left: -50px;
    right: auto;
  }

  /* Manifesto / Approach Mobile */
  .approach-headline {
    font-size: 32px;
  }

  .approach-left,
  .approach-right {
    grid-column: 1 / span 12;
  }

  html[dir="rtl"] .approach-left,
  html[dir="rtl"] .approach-right {
    grid-column: 1 / span 12;
  }

  /* Work Grid Responsive */
  .work-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-item.col-7,
  .work-item.col-5,
  .work-item.col-6 {
    grid-column: 1;
  }

  .row-1 .col-7 .image-wrapper,
  .row-1 .col-5 .image-wrapper,
  .row-2 .col-6 .image-wrapper,
  .row-3 .col-5 .image-wrapper,
  .row-3 .col-7 .image-wrapper {
    aspect-ratio: 4 / 3;
  }

  /* Services Mobile Stack */
  .service-row-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .service-num {
    padding-top: 0;
  }

  .service-title-col {
    grid-column: 1;
  }

  .service-title {
    font-size: 22px;
  }

  .service-desc-col {
    grid-column: 1;
    gap: 12px;
  }

  .service-row:hover,
  .service-row.expanded {
    padding-left: 0px;
    padding-right: 0px;
  }

  /* Accordion Drawer Mobile */
  .service-row.expanded .service-row-details {
    max-height: 600px; /* Needs more space on mobile since columns stack */
    padding-bottom: 32px;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 10px;
  }

  .service-details-label {
    grid-column: 1;
  }

  .service-details-specs,
  .service-details-options {
    grid-column: 1;
  }

  /* L'Atelier Mobile */
  .atelier-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }

  .atelier-item {
    padding-right: 0;
    border-right: none !important;
    padding-bottom: 24px;
    border-bottom: 0.5px solid var(--color-border);
  }

  .atelier-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  html[dir="rtl"] .atelier-item {
    padding-left: 0;
    border-left: none !important;
  }

  /* Statement Mobile */
  .statement-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .statement-echo-circle-container {
    width: 350px;
    height: 350px;
  }

  /* Contact Mobile */
  .contact-section {
    padding-bottom: 100px;
  }

  .contact-header-line {
    margin-bottom: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-info-col,
  .contact-form-col {
    grid-column: 1;
  }

  .contact-email-link {
    font-size: 26px;
  }
}
