/* ============================================================
   ARYA NAIR INTERIORS — CONTACT.CSS
   Mood: Rich dark editorial hero → clean warm form layout
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bone: #F7F4EF; --stone: #E8E0D4; --brass: #B8935A; --brass-light: #D4AD78;
  --espresso: #1C1410; --espresso-mid: #2E1F17; --warm-white: #FDFAF6;
  --ink: #3D2B1F; --muted: #7A6A5E; --error: #B85A5A;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Jost', sans-serif; --ff-accent: 'Cormorant', Georgia, serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--warm-white); color: var(--ink); overflow-x: hidden; }
em { font-style: italic; } a { text-decoration: none; color: inherit; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(253,250,246,0.97); backdrop-filter: blur(12px); padding: 18px 60px; box-shadow: 0 1px 0 rgba(28,20,16,0.08); }
.nav-logo a { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--warm-white); letter-spacing: 0.02em; transition: color 0.4s; }
.logo-sub { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-light); margin-top: 2px; transition: color 0.4s; }
.nav.scrolled .logo-main { color: var(--espresso); }
.nav.scrolled .logo-sub { color: var(--brass); }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,250,246,0.8); transition: color 0.3s; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--brass-light); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--brass); }
.nav-links .nav-cta { background: var(--brass); color: var(--warm-white) !important; padding: 10px 22px; border-radius: 2px; transition: background 0.3s; }
.nav-links .nav-cta:hover { background: var(--brass-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--warm-white); transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* HERO */
.contact-hero { min-height: 70vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 0; position: relative; overflow: hidden; background: var(--espresso-mid); }
.ch-bg { position: absolute; inset: 0; }
.ch-grain { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; }
.ch-pattern { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(184,147,90,0.12) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(184,147,90,0.07) 0%, transparent 50%), linear-gradient(to bottom, transparent 40%, rgba(13,11,9,0.5) 100%); }
.ch-content { position: relative; z-index: 2; padding: 140px 60px 60px; max-width: 860px; }
.ch-eyebrow { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; display: block; }
.ch-title { font-family: var(--ff-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.08; color: var(--warm-white); margin-bottom: 24px; }
.ch-title em { font-style: italic; color: var(--brass-light); }
.ch-sub { font-size: 1rem; font-weight: 300; line-height: 1.85; color: rgba(253,250,246,0.6); max-width: 540px; margin-bottom: 36px; }
.ch-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.ch-t { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 300; color: rgba(253,250,246,0.65); }
.ch-t i { color: var(--brass-light); font-size: 0.85rem; }

/* SECTION LABELS */
.section-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; display: block; }
.section-heading { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; color: var(--espresso); letter-spacing: -0.01em; margin-bottom: 24px; }
.section-heading em { font-style: italic; color: var(--brass); }

/* CONTACT MAIN */
.contact-main { padding: 80px 60px; background: var(--warm-white); }
.cm-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.cm-title { font-family: var(--ff-display); font-size: 2rem; font-weight: 400; color: var(--espresso); margin-bottom: 12px; }
.cm-intro { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 36px; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form.submitted .form-fields-wrapper { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--stone); border-radius: 2px; padding: 14px 16px;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 300; color: var(--ink);
  background: var(--warm-white); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s; -webkit-appearance: none; appearance: none;
}
.form-field 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='%237A6A5E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(184,147,90,0.08); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(122,106,94,0.5); }
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-check { flex-direction: row; align-items: flex-start; gap: 14px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; border: 1px solid var(--stone); border-radius: 2px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--brass); }
.form-check label { font-size: 0.78rem; font-weight: 300; line-height: 1.6; color: var(--muted); text-transform: none; letter-spacing: 0; cursor: pointer; }
.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--brass); color: var(--warm-white); font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 18px 44px; border-radius: 2px; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s; align-self: flex-start; }
.btn-submit:hover { background: var(--brass-light); transform: translateY(-2px); }
.btn-submit i { transition: transform 0.3s; }
.btn-submit:hover i { transform: translateX(4px); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 60px 40px; background: var(--bone); border: 1px solid rgba(184,147,90,0.2); border-radius: 2px; gap: 16px; }
.form-success.visible { display: flex; }
.form-success i { font-size: 2.5rem; color: var(--brass); }
.form-success h3 { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; color: var(--espresso); }
.form-success p { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--muted); max-width: 400px; }

/* INFO COLUMN */
.cm-info-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 32px; }
.info-block { padding: 28px 32px; background: var(--bone); border: 1px solid var(--stone); border-radius: 2px; }
.info-block h4 { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 500; color: var(--espresso); margin-bottom: 16px; letter-spacing: 0.02em; }
.info-block p { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--muted); display: flex; gap: 12px; margin-bottom: 10px; }
.info-block p:last-child { margin-bottom: 0; }
.info-block p i { color: var(--brass); font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.info-block p a { color: var(--ink); transition: color 0.3s; }
.info-block p a:hover { color: var(--brass); }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 300; color: var(--muted); transition: color 0.3s; }
.social-item:hover { color: var(--brass); }
.social-item i { width: 20px; text-align: center; color: var(--brass); font-size: 0.9rem; }
.what-to-expect { background: var(--espresso); border: none; }
.what-to-expect h4 { color: var(--warm-white); }
.expect-steps { display: flex; flex-direction: column; gap: 20px; }
.expect-step { display: flex; gap: 16px; align-items: flex-start; opacity: 0; transform: translateX(12px); transition: opacity 0.5s, transform 0.5s; }
.expect-step.visible { opacity: 1; transform: translateX(0); }
.expect-step:nth-child(2) { transition-delay: 0.08s; }
.expect-step:nth-child(3) { transition-delay: 0.16s; }
.expect-step:nth-child(4) { transition-delay: 0.24s; }
.es-num { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: rgba(184,147,90,0.3); line-height: 1; flex-shrink: 0; width: 30px; }
.expect-step strong { display: block; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500; color: var(--warm-white); margin-bottom: 4px; }
.expect-step p { font-size: 0.78rem; font-weight: 300; line-height: 1.65; color: rgba(253,250,246,0.5); }

/* STUDIO AREA */
.studio-area { padding: 100px 60px; background: var(--stone); }
.sa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.sa-text .section-heading { margin-bottom: 20px; }
.sa-text p { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 28px; }
.sa-nearby { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sa-nb-item { font-size: 0.85rem; font-weight: 300; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.sa-nb-item i { color: var(--brass); font-size: 0.85rem; width: 20px; text-align: center; }
.btn-brass { display: inline-flex; align-items: center; gap: 10px; background: var(--brass); color: var(--warm-white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 32px; border-radius: 2px; transition: background 0.3s, transform 0.2s; }
.btn-brass:hover { background: var(--brass-light); transform: translateY(-1px); }
.sa-map { display: flex; align-items: center; }
.map-embed-wrap { width: 100%; display: flex; flex-direction: column; gap: 18px; }
.map-placeholder { background: var(--stone); border-radius: 2px; height: 260px; overflow: hidden; }
.map-placeholder iframe { display: block; }
.map-directions-link { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; background: var(--brass); color: var(--warm-white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 32px; border-radius: 2px; text-decoration: none; transition: background 0.3s, transform 0.2s; }
.map-directions-link:hover { background: var(--brass-light); transform: translateY(-1px); }

/* TESTIMONIAL */
.contact-test { padding: 80px 60px; background: var(--espresso); }
.ct-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.ct-stars { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 28px; }
.ct-stars i { color: var(--brass); font-size: 0.85rem; }
.ct-stars span { font-size: 0.78rem; font-weight: 300; color: rgba(253,250,246,0.5); margin-left: 8px; }
.ct-inner blockquote { font-family: var(--ff-accent); font-size: 1.25rem; font-style: italic; font-weight: 300; line-height: 1.75; color: var(--warm-white); margin-bottom: 32px; }
.ct-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.ct-av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #C8B49A, #9A7A5E); }
.ct-author strong { display: block; font-family: var(--ff-body); font-size: 0.88rem; font-weight: 500; color: var(--warm-white); text-align: left; }
.ct-author span { font-size: 0.75rem; font-weight: 300; color: rgba(253,250,246,0.4); }

/* FAQ MINI */
.contact-faq { padding: 80px 60px; background: var(--bone); }
.cf-inner { max-width: 1100px; margin: 0 auto; }
.cf-inner h3 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400; color: var(--espresso); margin-bottom: 36px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.cf-item { display: flex; gap: 16px; align-items: flex-start; padding: 28px; background: var(--warm-white); border: 1px solid var(--stone); border-radius: 2px; opacity: 0; transform: translateY(14px); transition: opacity 0.5s, transform 0.5s, border-color 0.3s; }
.cf-item:nth-child(2) { transition-delay: 0.08s; }
.cf-item:nth-child(3) { transition-delay: 0.16s; }
.cf-item:nth-child(4) { transition-delay: 0.24s; }
.cf-item.visible { opacity: 1; transform: translateY(0); }
.cf-item:hover { border-color: rgba(184,147,90,0.3); }
.cf-item > i { color: var(--brass); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.cf-item strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
.cf-item p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--muted); }
.cf-more { font-size: 0.85rem; font-weight: 300; color: var(--muted); }
.cf-more a { color: var(--brass); transition: color 0.3s; }
.cf-more a:hover { color: var(--brass-light); }

/* FOOTER */
.footer { background: var(--espresso); padding: 80px 60px 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; max-width: 1200px; margin: 0 auto 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(184,147,90,0.1); }
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 20px; }
.footer-brand .logo-main { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--warm-white); }
.footer-brand .logo-sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-light); margin-top: 3px; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: rgba(253,250,246,0.45); margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 2px; border: 1px solid rgba(184,147,90,0.25); display: flex; align-items: center; justify-content: center; color: rgba(253,250,246,0.5); font-size: 0.85rem; transition: border-color 0.3s, color 0.3s; }
.footer-social a:hover { border-color: var(--brass-light); color: var(--brass-light); }
.footer-nav h5 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.85rem; font-weight: 300; color: rgba(253,250,246,0.45); transition: color 0.3s; }
.footer-nav a:hover { color: var(--warm-white); }
.footer-contact h5 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; }
.footer-contact p { font-size: 0.82rem; font-weight: 300; color: rgba(253,250,246,0.45); line-height: 1.6; display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--brass); margin-top: 2px; flex-shrink: 0; font-size: 0.75rem; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; max-width: 1200px; margin: 0 auto; font-size: 0.75rem; font-weight: 300; color: rgba(253,250,246,0.25); flex-wrap: wrap; gap: 8px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 28px 40px; } .nav.scrolled { padding: 18px 40px; }
  .ch-content { padding: 120px 40px 60px; }
  .contact-main { padding: 60px 40px; }
  .cm-inner { grid-template-columns: 1fr; }
  .cm-info-sticky { position: static; }
  .studio-area { padding: 80px 40px; }
  .sa-inner { grid-template-columns: 1fr; }
  .contact-test { padding: 60px 40px; }
  .contact-faq { padding: 60px 40px; }
  .footer { padding: 60px 40px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--espresso); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: rgba(253,250,246,0.8) !important; }
  .nav-toggle { display: flex; z-index: 101; }
  .ch-content { padding: 100px 24px 48px; }
  .ch-trust { flex-direction: column; gap: 12px; }
  .contact-main { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .studio-area { padding: 60px 24px; }
  .contact-test { padding: 60px 24px; }
  .contact-faq { padding: 60px 24px; }
  .cf-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}
