/* =============================================
   IMROZ FASHIONS — Global Stylesheet
   Targeting: UK, US, Europe luxury fashion buyers
   Palette: Ivory + Warm Gold + Deep Charcoal
   ============================================= */

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

:root {
  --ivory:        #F8F5F0;
  --ivory-deep:   #EDE8DF;
  --ivory-mid:    #F2EDE4;
  --gold:         #B8975A;
  --gold-light:   #D4B47A;
  --gold-pale:    #F0E6D0;
  --gold-dark:    #8A6E3A;
  --charcoal:     #2C2825;
  --charcoal-mid: #5A524A;
  --charcoal-lt:  #8A7E74;
  --white:        #FFFFFF;
  --border:       rgba(184,151,90,0.22);
  --border-mid:   rgba(184,151,90,0.4);
  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Inter', system-ui, sans-serif;
  --max-w:        1160px;
  --section-pad:  96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── CONTAINERS & LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: var(--section-pad) 0; }
.section-sm { padding: 64px 0; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300; line-height: 1.18;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
}
.lead {
  font-size: 16px; font-weight: 300;
  color: var(--charcoal-mid); line-height: 1.9;
  max-width: 560px;
}
.divider {
  width: 40px; height: 1px;
  background: var(--gold); margin: 18px 0;
}
.divider-center { margin: 18px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-body); font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 13px 32px;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent; cursor: pointer;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--gold); color: var(--white); }
.btn-dark {
  border-color: var(--charcoal); color: var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-filled { background: var(--gold); color: var(--white); }
.btn-filled:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-white { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--charcoal); }

/* ── TOPBAR ── */
.topbar {
  background: var(--charcoal);
  padding: 9px 0; font-size: 11.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
}
.topbar .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: rgba(255,255,255,.55); transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 28px; height: 66px;
  max-width: var(--max-w); margin: 0 auto;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.65rem; font-weight: 400;
  letter-spacing: .04em; color: var(--charcoal);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 30px; align-items: center;
}
.nav-links a {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal-mid);
  position: relative; padding-bottom: 3px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 22px; background: var(--gold);
  color: var(--white); white-space: nowrap;
  transition: background .25s;
}
.nav-cta:hover { background: var(--charcoal); }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal); transition: all .3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 12px 28px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--charcoal-mid); padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--charcoal); }
.mobile-menu a.cta-mobile {
  color: var(--gold); border-bottom: none;
  margin-top: 8px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 72px 0 68px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  inset: 0; background: url('https://www.imrozfashions.com/images/imroz-fashions.png') no-repeat center/cover;
  opacity: .04; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .lead { color: rgba(255,255,255,.55); max-width: 540px; margin-top: 16px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.35);
  margin-top: 28px; letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: #1E1C1A; padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--white); margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.8;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); font-size: 11px;
  font-weight: 500; letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.38); transition: color .2s;
}
.footer-col li a:hover { color: var(--white); }
.footer-contact-row {
  display: flex; gap: 10px;
  margin-bottom: 12px; align-items: flex-start;
}
.footer-contact-row svg {
  width: 14px; height: 14px;
  fill: var(--gold); flex-shrink: 0; margin-top: 3px;
}
.footer-contact-row p,
.footer-contact-row a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.7;
  transition: color .2s;
}
.footer-contact-row a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 12px; color: rgba(255,255,255,.22);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── CARDS ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 10px;
}
.info-card p {
  font-size: 14px; font-weight: 300;
  color: var(--charcoal-mid); line-height: 1.8;
}

/* ── TRUST STRIP ── */
.trust-strip { background: var(--charcoal); padding: 22px 0; }
.trust-strip .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.55); font-size: 12px;
  letter-spacing: .05em;
}
.trust-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(184,151,90,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 13px; height: 13px; fill: var(--gold); }

/* ── INQUIRY FORM (shared) ── */
.inquiry-section { background: var(--charcoal); padding: var(--section-pad) 0; }
.inquiry-section .section-title { color: var(--white); }
.inquiry-section .section-title em { color: var(--gold-light); }
.inquiry-section .lead { color: rgba(255,255,255,.5); max-width: 500px; margin-top: 14px; }
.inquiry-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; margin-top: 56px; align-items: start;
}
.inquiry-details h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 20px;
}
.contact-row {
  display: flex; gap: 12px; margin-bottom: 18px;
  align-items: flex-start;
}
.contact-row svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-row div p { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.contact-row div a,
.contact-row div span {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.65);
  display: block; line-height: 1.6; transition: color .2s;
}
.contact-row div a:hover { color: var(--gold-light); }
.inquiry-form { display: flex; flex-direction: column; gap: 12px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: var(--ff-body);
  font-size: 14px; font-weight: 300;
  padding: 13px 16px; outline: none;
  transition: border-color .2s; appearance: none;
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: rgba(255,255,255,.28); }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: var(--gold); }
.inquiry-form textarea { min-height: 130px; resize: vertical; }
.inquiry-form select option { background: #2C2825; }
.inquiry-form button {
  align-self: flex-start;
  font-family: var(--ff-body); font-size: 11px;
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; padding: 14px 44px;
  background: var(--gold); color: var(--white);
  border: none; cursor: pointer; transition: background .25s;
}
.inquiry-form button:hover { background: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .trust-strip .container { justify-content: center; }
}
@media (max-width: 540px) {
  .card-grid-3,
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
}
