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

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

:root {
  --gold: #b8945a;
  --gold-light: #d4af7a;
  --gold-pale: #f0e0c0;
  --dark: #1a1208;
  --ink: #2e2010;
  --cream: #fdf8f2;
  --muted: #7a6a52;
  --border: #e8dcc8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  line-height: 1.2;
}

.nav-brand span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.25em;
  color: #9e8e76;
  text-transform: uppercase;
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #c0a878;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a.active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
}

@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #3a2a10;
    padding: 0.5rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #2a1e0a;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
  }
}

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, #1a1208 0%, #2e1f0a 60%, #1a1208 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184, 148, 90, 0.03) 40px, rgba(184, 148, 90, 0.03) 80px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184, 148, 90, 0.02) 40px, rgba(184, 148, 90, 0.02) 80px);
}

/* decorative circles */
#hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 90, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 1.4rem;
}

.hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
}

.hero-content p {
  color: #c0a878;
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.4rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
}

.btn-outline:hover {
  background: rgba(184, 148, 90, 0.12);
  transform: translateY(-1px);
}

/* ── PAGE TITLE ── */
.page-title {
  background: linear-gradient(135deg, #2e1f0a 0%, #1a1208 100%);
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px,
      rgba(184, 148, 90, 0.04) 30px, rgba(184, 148, 90, 0.04) 60px);
}

.page-title .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
}

.page-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--gold-light);
  position: relative;
  letter-spacing: 0.05em;
}

.page-title .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.page-title p {
  color: #9e8e76;
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ── SECTION WRAPPER ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ── SERVICES ── */
#Services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(184, 148, 90, 0.15);
  transform: translateY(-3px);
}

.service-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #e8dcc8;
}

.service-card .card-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-card .card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.28rem 0 0.28rem 1.2rem;
  position: relative;
  border-bottom: 1px solid #f3ede4;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.58rem;
}

/* third card full-width on 3-col */
.service-card.full {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 900px) {
  .service-card.full {
    grid-column: auto;
    max-width: none;
  }
}

/* ── ABOUT ── */
#about {
  background: linear-gradient(135deg, #2e1f0a 0%, #1a1208 100%);
}

#about .section-header h2 {
  color: var(--gold-light);
}

#about .section-header p {
  color: #c0a878;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  color: #c0a878;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 0.97rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  background: rgba(184, 148, 90, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 0 4px 4px 0;
}

.highlight-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.highlight-item p {
  color: #9e8e76;
  font-size: 0.83rem;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA ── */
#cta {
  background: var(--cream);
  text-align: center;
}

.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── MAIN (CONTACT) ── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LEFT PANEL (CONTACT) ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.info-card .card-icon {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.info-card p,
.info-card a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.6;
  display: block;
}

.info-card a:hover {
  color: var(--gold);
}

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted) !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  text-decoration: none !important;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}

/* ── MAP ── */
.map-panel {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
}

.map-header .divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.map-frame {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-address {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.map-address .pin {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-brand-sub {
  color: #7a6a52;
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #9e8e76;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #2e2010;
  padding-top: 1.5rem;
  text-align: center;
  color: #5a4a32;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* ── TERMS & CONDITIONS PAGE ── */
/* Header */
header {
  background: var(--dark);
  padding: 2rem 2rem 1.6rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

header .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

header .logo-sub {
  font-size: 0.72rem;
  color: #9e8e76;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Content */
main.terms-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.intro-box {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.6rem;
  margin-bottom: 3rem;
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  margin-bottom: 2.8rem;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

h2 .num {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

p {
  margin-bottom: 0.9rem;
  color: var(--ink);
}

p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.9rem 0;
}

ul li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: var(--ink);
}

ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.65rem;
}

/* Offer highlight box */
.offer-box {
  background: linear-gradient(135deg, #fdf3e3, #fff8ef);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
}

.offer-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.offer-box .tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.7rem;
}

strong {
  color: var(--dark);
  font-weight: 700;
}

.note {
  background: #f5f0ea;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

@media (max-width: 600px) {

  main,
  main.terms-main {
    padding: 2rem 1.2rem 4rem;
  }
}

/* <!-- ============================================================
     OFFER SNIPPET — paste this inside Section 4 (Offers & Promotions)
     of nr-fashion-terms.html, replacing or adding to the .offer-box blocks.
     All classes and CSS variables match the existing terms page.
     ============================================================ -->

<!-- Extra styles needed only for the table — add inside <style> in your terms page --> */

.offer-table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 340px;
}

.offer-table thead tr {
  background: var(--dark);
}

.offer-table thead th {
  padding: 0.75rem 1rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.offer-table tbody tr {
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s;
}

.offer-table tbody tr:last-child {
  border-bottom: none;
}

.offer-table tbody tr:hover {
  background: #fdf3e3;
}

.offer-table td {
  padding: 0.65rem 1rem;
  color: var(--ink);
}

.offer-table td.discount-col {
  color: var(--gold);
  font-weight: 700;
}

.offer-table tr.total-row td {
  background: linear-gradient(90deg, #fdf3e3, #fff8ef);
  font-weight: 700;
  color: var(--dark);
  border-top: 2px solid var(--gold);
}

.offer-table tr.savings-row td {
  background: var(--dark);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.offer-conditions {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offer-conditions li {
  padding: 0.5rem 0.9rem 0.5rem 2.2rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}

.offer-conditions li::before {
  content: '✦';
  position: absolute;
  left: 0.7rem;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.72rem;
}

.offer-badge-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 3px;
}

.offer-badge.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.offer-highlight-line {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.offer-highlight-line span {
  color: var(--gold);
}