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

:root {
  --temple-gold: #C5962A;
  --deep-navy: #0F1F3D;
  --silk-ivory: #FAF8F5;
  --khmer-teal: #2E7D7D;
  --warm-sand: #E8DCC8;
  --blush-silk: #F5E6D8;
  --charcoal: #2D3436;
  --light-gold: #F0DCA4;
  --dark-gold: #A67B1E;
  --soft-gray: #7F8C8D;
  --white: #FFFFFF;
}

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

body {
  font-family: Calibri, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--silk-ivory);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav-announcement {
  background: var(--deep-navy);
  color: var(--light-gold);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: Calibri, sans-serif;
  border-bottom: 2px solid var(--temple-gold);
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--silk-ivory);
  border-bottom: 1px solid var(--warm-sand);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(15,31,61,0.08); }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-logo-main {
  font-family: Georgia, 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: 4px;
  text-decoration: none;
}
.nav-logo-sub {
  font-family: Georgia, serif;
  font-size: 11px;
  color: var(--temple-gold);
  font-style: italic;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: Calibri, sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--temple-gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--temple-gold);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cart {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: Calibri, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: var(--temple-gold);
  padding: 16px 48px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(197,150,42,0.3);
}
.btn-outline {
  display: inline-block;
  font-family: Calibri, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--temple-gold);
  border: 1px solid var(--temple-gold);
  padding: 15px 48px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover {
  background: var(--temple-gold);
  color: var(--deep-navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(197,150,42,0.3) 40px, rgba(197,150,42,0.3) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}
.hero-crown {
  font-size: 48px;
  color: var(--temple-gold);
  margin-bottom: 30px;
}
.hero-crown svg { width: 60px; height: 60px; }
.hero-tagline {
  font-family: Calibri, sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--temple-gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: Georgia, 'EB Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--temple-gold);
}
.hero-sub {
  font-family: Calibri, sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--temple-gold);
  margin: 0 auto 40px;
}

/* ===== BRAND PROMISE STRIP ===== */
.promise-strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--warm-sand);
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-gray);
}
.promise-icon {
  width: 18px;
  height: 18px;
  color: var(--temple-gold);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 60px;
}
.section-label {
  font-family: Calibri, sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--temple-gold);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: Georgia, 'EB Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--deep-navy);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--soft-gray);
  text-align: center;
  font-style: italic;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--warm-sand);
  transition: all 0.3s;
}
.pillar-card:hover {
  border-color: var(--temple-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(15,31,61,0.06);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--temple-gold);
}
.pillar-title {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--soft-gray);
  line-height: 1.6;
}

/* ===== FEATURED PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--warm-sand);
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--temple-gold);
  box-shadow: 0 8px 30px rgba(15,31,61,0.06);
}
.product-img {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-silk {
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--blush-silk) 50%, var(--light-gold) 100%);
}
.product-img-navy {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2d52 50%, var(--khmer-teal) 100%);
}
.product-img-gold {
  background: linear-gradient(135deg, var(--temple-gold) 0%, var(--dark-gold) 50%, #8B6914 100%);
}
.product-img-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--deep-navy);
  color: var(--temple-gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}
.product-img-text {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--white);
  text-align: center;
  padding: 20px;
  opacity: 0.9;
}
.product-img-silk .product-img-text { color: var(--deep-navy); }
.product-info {
  padding: 24px;
}
.product-name {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 6px;
}
.product-collection {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--temple-gold);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 14px;
  color: var(--soft-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-price {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--deep-navy);
}
.product-price span {
  font-size: 13px;
  color: var(--soft-gray);
  font-family: Calibri, sans-serif;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--deep-navy);
  padding: 80px 60px;
  text-align: center;
  position: relative;
}
.quote-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--temple-gold);
}
.quote-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--temple-gold);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--temple-gold);
  line-height: 1;
  margin-bottom: 16px;
}
.quote-text {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--white);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.quote-attr {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--temple-gold);
}

/* ===== STORY SECTION ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.story-img {
  height: 500px;
  background: linear-gradient(145deg, var(--warm-sand), var(--blush-silk), var(--light-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.story-img-text {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--deep-navy);
  text-align: center;
  padding: 40px;
  opacity: 0.6;
  font-style: italic;
}
.story-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--deep-navy);
  color: var(--temple-gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
}
.story-content h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.3;
}
.story-content p {
  font-size: 15px;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-sig {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--temple-gold);
  font-style: italic;
  margin-top: 24px;
}
.story-sig-title {
  font-family: Calibri, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-top: 4px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--deep-navy);
  padding: 120px 60px 100px;
  text-align: center;
  position: relative;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--temple-gold);
}
.about-hero h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-hero p {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--light-gold);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.about-story h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
}
.about-story p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 24px;
}
.about-story .highlight {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--deep-navy);
  font-style: italic;
  border-left: 3px solid var(--temple-gold);
  padding-left: 24px;
  margin: 40px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-top: 3px solid var(--temple-gold);
}
.value-number {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--temple-gold);
  margin-bottom: 8px;
}
.value-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 14px;
  color: var(--soft-gray);
  line-height: 1.6;
}

/* ===== PRODUCT TEASER PAGE ===== */
.collection-hero {
  background: var(--deep-navy);
  padding: 120px 60px 100px;
  text-align: center;
  position: relative;
}
.collection-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--temple-gold);
}
.collection-hero h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}
.collection-hero p {
  font-family: Georgia, serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto;
  font-style: italic;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 60px auto;
  gap: 50px;
  align-items: start;
}
.product-gallery {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-gallery-text {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--white);
  text-align: center;
  padding: 30px;
  opacity: 0.8;
}
.product-detail-info h2 {
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 8px;
}
.product-detail-collection {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--temple-gold);
  margin-bottom: 20px;
}
.product-detail-price {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--deep-navy);
  margin-bottom: 24px;
}
.product-detail-price span {
  font-size: 14px;
  color: var(--soft-gray);
  font-family: Calibri, sans-serif;
}
.product-detail-desc {
  font-size: 15px;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}
.product-specs {
  border-top: 1px solid var(--warm-sand);
  padding-top: 24px;
  margin-bottom: 30px;
}
.product-spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm-sand);
  font-size: 14px;
}
.product-spec-label {
  color: var(--deep-navy);
  font-weight: 600;
}
.product-spec-value {
  color: var(--soft-gray);
}
.product-badge {
  display: inline-block;
  background: var(--deep-navy);
  color: var(--temple-gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.product-badges { margin-bottom: 30px; }
.size-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.size-btn {
  padding: 12px 24px;
  border: 1px solid var(--warm-sand);
  background: var(--white);
  font-family: Calibri, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn.active, .size-btn:hover {
  border-color: var(--temple-gold);
  background: var(--temple-gold);
  color: var(--deep-navy);
}

/* ===== SIGNUP PAGE ===== */
.signup-hero {
  background: var(--deep-navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px;
}
.signup-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(197,150,42,0.3) 40px, rgba(197,150,42,0.3) 41px
  );
}
.signup-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
}
.signup-left {
  background: linear-gradient(145deg, var(--warm-sand), var(--blush-silk), var(--light-gold));
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.signup-left-crown {
  font-size: 40px;
  color: var(--temple-gold);
  margin-bottom: 24px;
}
.signup-left h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
}
.signup-left p {
  font-size: 14px;
  color: var(--soft-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}
.signup-perks {
  list-style: none;
  text-align: left;
}
.signup-perks li {
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.signup-perks li::before {
  content: '\2713';
  color: var(--temple-gold);
  font-weight: bold;
}

.signup-right {
  background: var(--white);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-right h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 8px;
}
.signup-right .signup-sub {
  font-size: 13px;
  color: var(--soft-gray);
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--warm-sand);
  background: var(--silk-ivory);
  font-family: Calibri, sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--temple-gold);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #bbb;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.signup-cta {
  width: 100%;
  margin-top: 10px;
}
.signup-note {
  font-size: 11px;
  color: var(--soft-gray);
  margin-top: 16px;
  text-align: center;
}

/* ===== INSTAGRAM STRIP ===== */
.insta-strip {
  padding: 80px 60px;
  text-align: center;
  background: var(--white);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.insta-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--white);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s;
}
.insta-item:hover { opacity: 1; }
.insta-1 { background: linear-gradient(135deg, var(--warm-sand), var(--blush-silk)); color: var(--deep-navy); }
.insta-2 { background: linear-gradient(135deg, var(--deep-navy), #1a2d52); }
.insta-3 { background: linear-gradient(135deg, var(--temple-gold), var(--dark-gold)); }
.insta-4 { background: linear-gradient(135deg, var(--khmer-teal), #1a4a4a); }
.insta-5 { background: linear-gradient(135deg, var(--blush-silk), var(--light-gold)); color: var(--deep-navy); }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--deep-navy);
  padding: 120px 60px 100px;
  text-align: center;
  position: relative;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--temple-gold);
}
.contact-hero h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-hero p {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--light-gold);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.contact-info h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-info p {
  font-size: 15px;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--temple-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-detail-value a {
  color: var(--khmer-teal);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-value a:hover {
  color: var(--temple-gold);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--warm-sand);
}
.contact-form-wrapper h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--deep-navy);
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-form-wrapper .form-sub {
  font-size: 13px;
  color: var(--soft-gray);
  margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep-navy);
  padding: 80px 60px 40px;
  border-top: 3px solid var(--temple-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.footer-brand .footer-sub {
  font-family: Georgia, serif;
  font-size: 12px;
  color: var(--temple-gold);
  font-style: italic;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: Calibri, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--temple-gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--temple-gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-domains {
  display: flex;
  gap: 20px;
}
.footer-domains a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-domains a:hover { color: var(--temple-gold); }
