@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Noto+Serif+JP:wght@200;300;400&family=Noto+Sans+JP:wght@300;400&display=swap');

/* ─── Root Variables ─── */
:root {
  --color-main:        #A9A5A1;  /* Ash Taupe */
  --color-main-dark:   #7B7874;  /* Stone */
  --color-sub:         #E2DFDC;  /* Mist */
  --color-accent:      #252523;  /* Graphite — CTA唯一色 */
  --color-bg:          #F2F0EE;  /* Linen Mist */
  --color-bg-dark:     #E8E5E2;  /* Pale Ash */
  --color-white:       #FAF9F8;  /* Paper */
  --color-border:      #D0CDCA;  /* Ash Line */
  --color-text:        #1E1D1C;  /* Ink */
  --color-text-mid:    #676563;  /* Stone Grey */
  --color-text-light:  #979492;  /* Ash Grey */

  --font-heading-en: 'Cormorant Garamond', Georgia, serif;
  --font-heading-ja: 'Noto Serif JP', serif;
  --font-body-en:    'DM Sans', sans-serif;
  --font-body-ja:    'Noto Sans JP', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  128px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --transition: 250ms ease;

  --max-width:  1000px;
  --text-width: 520px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body-en);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-width { max-width: var(--text-width); }

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Typography Helpers ─── */
.section-label {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: var(--space-sm);
}
.section-label--light {
  color: rgba(250,249,248,0.96);
  text-shadow: 0 1px 16px rgba(30,29,28,0.75);
}

.section-marker {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-main);
  margin-bottom: var(--space-sm);
}

h1, h2, h3 {
  font-family: var(--font-heading-en);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text);
  line-height: 1.15;
}
h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.20; }

.label-sm {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.note-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-body-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.82; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-main);
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-body-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { opacity: 0.72; }

.btn-ghost-hero {
  display: inline-block;
  background: rgba(250, 249, 248, 0.12);
  color: var(--color-main);
  border: 1px solid rgba(169, 165, 161, 0.55);
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-body-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-hero:hover {
  background: rgba(250, 249, 248, 0.24);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(242,240,238,0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-name {
  font-family: var(--font-heading-en);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text);
  transition: color var(--transition);
}
.nav-logo-sub {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
}
.nav--hero .nav-logo-name { color: var(--color-white); }
.nav--hero .nav-logo-sub  { color: rgba(250,249,248,0.55); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links a {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-text); }
.nav--hero .nav-links a { color: rgba(250,249,248,0.7); }
.nav--hero .nav-links a:hover { color: var(--color-white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav--hero .nav-hamburger span { background: var(--color-white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(242,240,238,0.98);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  gap: var(--space-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

/* ─── Section Base ─── */
.section { padding: var(--space-xl) 0; }
.section-bg      { background: var(--color-bg); }
.section-bg-dark { background: var(--color-bg-dark); }
.section-white   { background: var(--color-white); }

/* ─── Section Header ─── */
.section-header { margin-bottom: var(--space-lg); }
.section-header--center { text-align: center; }
.section-header--center .section-marker { margin: 0 auto var(--space-sm); }

/* ─── HERO ─── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-dark);
  background-size: cover;
  background-position: center;
}

.hero-placeholder {
  background-color: #E8E5E2;
}
.hero-placeholder::after {
  content: 'HERO IMAGE PLACEHOLDER · 推奨：高露出の桜写真（枝・白い空） · 横長 3:2 または 16:9 · 最小 2400×1600px';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #979492;
  white-space: nowrap;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,29,28,0.38) 0%,
    rgba(30,29,28,0.06) 38%,
    rgba(30,29,28,0.36) 62%,
    rgba(30,29,28,0.66) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 120px;
}

.hero-headline {
  font-family: var(--font-heading-en);
  font-size: clamp(36px, 5.5vw, 56px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 28px rgba(30,29,28,0.45);
}

.hero-sub {
  font-family: var(--font-body-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(250,249,248,0.88);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ─── SECTION 2: PAIN ─── */
.quiet-problem-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) auto 0;
  max-width: var(--text-width);
}
.quiet-problem-list li {
  font-family: var(--font-body-en);
  font-size: 16px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--color-text-mid);
  letter-spacing: 0.06em;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}
.quiet-problem-list li:first-child {
  border-top: 1px solid var(--color-border);
}

/* ─── SECTION 3: SMALL DETAILS ─── */
.small-details-body {
  max-width: var(--text-width);
  margin: var(--space-lg) auto 0;
  text-align: center;
}
.small-details-body p {
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text-mid);
  margin-bottom: var(--space-md);
}

/* ─── SECTION 4: APPROACH ─── */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.approach-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: var(--space-sm);
}

.approach-body {
  margin-bottom: var(--space-lg);
}
.approach-body p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-sm);
  max-width: 480px;
}

/* Actual images (approach / about) */
.approach-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.about-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: var(--space-md);
}

/* Image Placeholders */
.img-placeholder {
  background-color: var(--color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.img-placeholder--approach {
  aspect-ratio: 4 / 3;
  width: 100%;
}
.img-placeholder--about {
  aspect-ratio: 2 / 3;
  width: 100%;
  margin-bottom: var(--space-md);
}
.img-placeholder-label {
  font-family: var(--font-body-en);
  font-size: 10px;
  letter-spacing: 0.15em;
  line-height: 1.8;
  color: var(--color-text-light);
  text-transform: uppercase;
  padding: var(--space-md);
}

.what-you-receive { margin-top: var(--space-lg); }
.receive-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 13px;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
}
.receive-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-main);
  font-size: 12px;
}

/* How It Works */
.how-it-works {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.step {
  padding: var(--space-md) var(--space-sm);
  border-left: 1px solid var(--color-border);
}
.step:first-child { border-left: none; padding-left: 0; }

.step-num {
  display: block;
  font-family: var(--font-heading-en);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-main);
  margin-bottom: var(--space-xs);
  line-height: 1;
}
.step p {
  font-size: 12px;
  color: var(--color-text-mid);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* ─── 3D RENDERS GALLERY ─── */
.section-renders {
  background: var(--color-sub);
  padding: var(--space-xl) 0;
}

.section-renders .section-header { margin-bottom: var(--space-lg); }
.section-renders h2 {
  font-style: italic;
  margin-bottom: var(--space-xs);
}
.section-note {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.renders-featured {
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
}
.renders-featured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: var(--radius-md);
  filter: saturate(0.72) brightness(1.02);
}

.renders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.render-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.render-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.72) brightness(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}
.render-item:hover img {
  transform: scale(1.025);
  filter: saturate(0.90) brightness(1.02);
}

.render-caption {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  padding-top: var(--space-sm);
  margin: 0;
}

/* ─── SECTION: FOR YOU ─── */
.for-you-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) auto 0;
  max-width: var(--text-width);
}
.for-you-list li {
  font-family: var(--font-body-en);
  font-size: 16px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--color-text-mid);
  letter-spacing: 0.06em;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}
.for-you-list li:first-child {
  border-top: 1px solid var(--color-border);
}

/* ─── SECTION: ABOUT / PHILOSOPHY ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-body {
  margin-bottom: var(--space-lg);
}
.about-body p {
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text-mid);
  margin-bottom: var(--space-md);
}

.about-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: var(--space-md);
}

.designer-block {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.designer-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.designer-photo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-main);
  flex-shrink: 0;
}
.designer-name {
  font-family: var(--font-heading-en);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text);
  display: block;
}
.designer-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  display: block;
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin-top: var(--space-lg);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: var(--font-body-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--space-md);
}

.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-main);
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-icon::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.8;
  padding-bottom: var(--space-md);
  max-width: 560px;
}

/* ─── OFFER / SERVICES ─── */
.offer-intro {
  max-width: var(--text-width);
  margin-bottom: var(--space-xl);
}
.offer-intro h2 {
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.offer-intro p {
  color: var(--color-text-mid);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.offer-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}
.offer-card--featured {
  border-color: var(--color-main);
}

.offer-card-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  display: block;
}
.offer-card h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.06em;
}
.offer-price {
  font-family: var(--font-heading-en);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text-mid);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  display: block;
}
.offer-price-note {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
  margin-bottom: var(--space-md);
}

.offer-if {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--color-bg-dark);
  border-radius: var(--radius-sm);
}
.offer-if-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  display: block;
}
.offer-if li {
  font-size: 12px;
  color: var(--color-text-mid);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}
.offer-if li::before {
  content: '"';
  position: absolute;
  left: 0;
  color: var(--color-main);
}

.offer-list { margin-bottom: var(--space-lg); }
.offer-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 13px;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}
.offer-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-main);
  font-size: 11px;
  top: 9px;
}

.offer-card .note-text {
  font-size: 10px;
  margin-top: var(--space-sm);
}

.offer-how {
  grid-column: 1 / -1;
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
}
.offer-how p {
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.7;
}
.offer-how .label-sm { text-align: center; }
.offer-how .note-text { margin-top: var(--space-sm); }

/* ─── FINAL CTA ─── */
.section-cta-block {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.section-cta-block h2 {
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--space-md);
}
.section-cta-block p {
  color: var(--color-text-mid);
  font-size: 14px;
  line-height: 2.0;
  margin-bottom: var(--space-sm);
}
.section-cta-block .btn-primary {
  margin: var(--space-lg) auto 0;
  display: block;
  width: fit-content;
}
.cta-subtext {
  margin-top: var(--space-md);
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.contact-form-wrap .label-sm { margin-bottom: var(--space-lg); }

.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body-en);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}
::placeholder { color: var(--color-text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23979492' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  margin-top: var(--space-lg);
}
.form-submit .btn-primary { width: 100%; text-align: center; }
.form-note {
  margin-top: var(--space-sm);
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  text-align: center;
}

.field-error {
  border-color: #C5A89A !important;
}

.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: var(--space-md);
}
.form-message p {
  font-size: 14px;
  line-height: 1.8;
}
.form-message--success {
  background: rgba(37,37,35,0.06);
  border: 1px solid rgba(37,37,35,0.16);
}
.form-message--success p { color: var(--color-accent); }
.form-message--error {
  background: rgba(197,168,154,0.12);
  border: 1px solid rgba(197,168,154,0.30);
}
.form-message--error p { color: var(--color-text-mid); }
.form-message--error a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--color-accent);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(226,223,220,0.10);
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-heading-en);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-sub);
  display: block;
  margin-bottom: 4px;
}
.footer-designer {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(226,223,220,0.35);
  display: block;
  margin-bottom: var(--space-md);
}
.footer-tagline {
  font-family: var(--font-heading-en);
  font-style: italic;
  font-size: 15px;
  color: rgba(169,165,161,0.55);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226,223,220,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(226,223,220,0.92); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(226,223,220,0.50);
}
.footer-location {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(226,223,220,0.50);
}

/* ─── Responsive ─── */
@media (max-width: 1000px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step:nth-child(4) { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 72px;
    --space-lg: 48px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding-top: 100px; }
  .hero-headline { font-size: clamp(32px, 8vw, 48px); }

  .approach-layout {
    grid-template-columns: 1fr;
  }
  .approach-visual { order: -1; }
  .img-placeholder--approach {
    aspect-ratio: 16 / 9;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
  .img-placeholder--about {
    aspect-ratio: 3 / 2;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step { border-left: 1px solid var(--color-border); }
  .step:nth-child(1),
  .step:nth-child(3),
  .step:nth-child(5) { border-left: none; padding-left: 0; }

  .renders-featured img { max-height: 280px; }
  .renders-grid { grid-template-columns: 1fr; gap: 8px; }
  .render-item img { aspect-ratio: 16 / 9; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-how { grid-column: 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }

  .btn-primary,
  .btn-secondary { width: 100%; text-align: center; }

  .hero-cta .btn-primary { width: auto; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 var(--space-sm); }
}

/* ─── Privacy Policy: Consent + Accordion ─── */
.form-consent {
  margin-top: var(--space-md);
}
.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font-body-en);
  color: var(--color-text-mid);
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.form-consent-check {
  accent-color: var(--color-accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.privacy-accordion {
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.privacy-toggle {
  width: 100%;
  background: var(--color-bg);
  color: var(--color-text-mid);
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.privacy-toggle:hover { background: var(--color-bg-dark); }
.privacy-arrow {
  font-size: 9px;
  transition: transform 0.25s ease;
  color: var(--color-text-light);
}
.privacy-accordion.open .privacy-arrow { transform: rotate(180deg); }
.privacy-body {
  display: none;
  padding: 16px 18px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.privacy-accordion.open .privacy-body { display: block; }
.privacy-body h4 {
  font-family: var(--font-body-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text);
  margin: 12px 0 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.privacy-body h4:first-child { margin-top: 0; }
.privacy-body p {
  font-family: var(--font-body-en);
  font-size: 11px;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
}
