/* Style With Sanaz — Epic Redesign
   Luxury, editorial, conversion-focused interior design brand site
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Refined luxury palette */
  --bg: #faf7f2;
  --bg-elevated: #ffffff;
  --ink: #1a1512;
  --ink-soft: #3d342c;
  --muted: #7a6b5d;
  --gold: #b8956c;
  --gold-light: #d4bc9a;
  --gold-dark: #9a7a4f;
  --brown: #2a221c;
  --brown-soft: #3f342c;
  --cream: #f3ebe0;
  --cream-dark: #e8dccb;
  --line: #e6d9c8;
  --line-soft: #f0e6d8;
  --white: #ffffff;
  --success: #4a7c59;

  /* Shadows — soft, layered, expensive */
  --shadow-sm: 0 4px 16px rgba(42, 34, 28, 0.06);
  --shadow: 0 20px 50px rgba(42, 34, 28, 0.10);
  --shadow-lg: 0 32px 80px rgba(42, 34, 28, 0.14);
  --shadow-gold: 0 16px 40px rgba(184, 149, 108, 0.25);

  /* Spacing & radii */
  --radius: 24px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --radius-full: 999px;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1220px;
  --gutter: 24px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Accessibility */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 20px;
  background: var(--brown);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip:focus { left: 16px; top: 16px; }

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 4.75rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 600; }
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--muted);
  max-width: 38em;
  line-height: 1.7;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brown);
  color: #f9f1e6;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brown-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-gold {
  background: var(--gold);
  color: #1a1512;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--cream);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-light {
  background: var(--white);
  color: var(--brown);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  color: #f9f1e6;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.brand-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: var(--cream);
}
.nav .btn {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 14px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero h1 {
  margin: 0 0 20px;
  line-height: 1.05;
}
.hero .lead { margin-bottom: 32px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .lead { margin: 0 auto; }

/* Cards & Grids */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body {
  padding: 24px 22px 28px;
}
.card-body h3 { margin-bottom: 8px; }
.card-body p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* Feature band */
.band {
  background: linear-gradient(160deg, #f0e6d6 0%, #faf7f2 55%, #f5efe6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band .section { padding-top: 72px; padding-bottom: 72px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

/* Video cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-meta {
  padding: 18px 18px 22px;
}
.video-meta .eyebrow {
  margin-bottom: 6px;
  font-size: 11px;
}
.video-meta h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-meta p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Shorts */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.short-card .video-embed {
  aspect-ratio: 9/16;
  max-height: 420px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tile {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tile-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tile:hover .tile-img img { transform: scale(1.05); }
.tile-body {
  padding: 22px 20px 26px;
}
.tile-body h3 { margin-bottom: 6px; }
.tile-body p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* Pricing / Premium panels */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.panel.featured {
  background: var(--brown);
  color: #f5ebe0;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.panel.featured .eyebrow { color: var(--gold-light); }
.panel.featured h2,
.panel.featured h3 { color: #f9f1e6; }
.panel.featured p { color: #d9cbb8; }
.panel.featured .list li { color: #e8dccb; }
.amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0 8px;
}
.panel.featured .amount { color: var(--gold-light); }
.list {
  margin: 24px 0 32px;
}
.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
}
.panel.featured .list li::before {
  background: var(--gold-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p {
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-details {
  display: grid;
  gap: 16px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 15px;
  color: var(--muted);
}
.form {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.form label {
  display: grid;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15.5px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 108, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; margin-top: 6px; }

/* Quote / Testimonial */
.quote-block {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 20px;
}
.quote-block cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Page title (inner pages) */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter) 32px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 36em; }

/* Footer */
.footer {
  background: var(--brown);
  color: #e8dccb;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
}
.footer .brand-mark {
  background: rgba(255,255,255,0.12);
  color: #f9f1e6;
}
.footer .brand-text strong { color: #f9f1e6; }
.footer .brand-text small { color: #c4b5a3; }
.footer p {
  font-size: 14.5px;
  color: #c4b5a3;
  margin: 16px 0 0;
  max-width: 280px;
  line-height: 1.6;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  font-size: 15px;
  color: #e8dccb;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--gutter);
  text-align: center;
  font-size: 13.5px;
  color: #b5a593;
}
.footer-bottom a { color: #d4c4b0; }
.footer-bottom a:hover { color: var(--gold-light); }

/* Utility */
.mt-0 { margin-top: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.center { text-align: center; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.disclaimer {
  background: #fff8ed;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: #6d5a49;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-2,
  .grid-4,
  .video-grid,
  .portfolio-grid,
  .stats,
  .price-grid,
  .contact-grid,
  .footer-inner,
  .shorts-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 40px;
    gap: 36px;
  }
  .hero-visual { order: -1; max-height: 360px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav .btn { margin: 8px 0 0; width: 100%; }
  .menu-toggle { display: inline-flex; }
  .section { padding: 56px var(--gutter); }
  .footer-inner { gap: 32px; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 2rem; }
}

@media (max-width: 560px) {
  .hero-actions,
  .actions { flex-direction: column; }
  .hero-actions .btn,
  .actions .btn { width: 100%; }
  .shorts-grid { grid-template-columns: 1fr; }
  .panel { padding: 28px 22px; }
  .form { padding: 22px; }
}
