/* === VARIABLES & RESET === */
:root {
  --navy: #0f172a;
  --gold: #d4af37;
  --gold-hover: #b5952f;
  --cream: #f5f5f0;
  --white: #ffffff;
  --text-main: #333333;
  --text-light: #666666;
  --border: #e2e8f0;
  --container: 1200px;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* === UTILS === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
  position: relative;
}
.bg-cream {
  background-color: var(--cream);
}
.bg-navy {
  background-color: var(--navy);
  color: #cbd5e1;
}
.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  max-width: 700px;
}

.center {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 800px;
}
.gold-italic {
  font-style: italic;
  color: var(--gold);
}
.full {
  width: 100%;
}

/* === BUTTONS === */
.btn-gold {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  background: var(--gold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
}

.btn-gold-solid {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
}
.btn-gold-solid:hover {
  background: var(--gold-hover);
}

.btn-outline {
  padding: 12px 30px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}
.btn-text:hover {
  color: var(--gold);
  gap: 12px;
}

.link-classic {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}
.link-arrow {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}
.h-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desk-nav {
  display: flex;
  gap: 40px;
}
.desk-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  font-weight: 500;
}
.desk-nav a.active,
.desk-nav a:hover {
  color: var(--gold);
}

.h-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: 0.5s ease;
}
.mob-menu.active {
  transform: translateY(0);
}
.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.mob-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: auto;
}
.mob-nav a {
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-serif);
}

/* === HERO === */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}
.hero-badge .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 25px;
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 20px 0 0 20px;
}
.image-frame img {
  width: 100%;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}
.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 2px solid var(--gold);
  z-index: 1;
}
.float-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  gap: 15px;
  align-items: center;
  border-left: 4px solid var(--navy);
}
.float-card i {
  color: var(--gold);
  width: 32px;
  height: 32px;
}
.float-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}
.float-card span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light);
}

/* === SECTIONS === */
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.check-list {
  margin-top: 30px;
}
.check-list li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}
.check-list i {
  color: var(--gold);
  width: 20px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}
.split-img img {
  width: 100%;
  box-shadow: 20px 20px 0 var(--gold);
}

/* Grid Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.card-dark i {
  color: var(--gold);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.card-dark h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* CTA Box */
.cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--gold);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
}
.cta-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  color: var(--white);
}
.cta-action {
  text-align: center;
  position: relative;
  z-index: 2;
}
.sub-text {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  border-top: 1px solid #dcdcdc;
  padding-top: 30px;
}
.stat strong {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.acc-item {
  border-bottom: 1px solid #dcdcdc;
}
.acc-header {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--navy);
  text-align: left;
}
.acc-header i {
  transition: 0.3s;
}
.acc-item.active .acc-header i {
  transform: rotate(180deg);
  color: var(--gold);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.acc-body p {
  padding-bottom: 25px;
  margin: 0;
  color: var(--text-light);
}
.acc-item.active .acc-body {
  max-height: 200px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info p {
  opacity: 0.8;
}
.c-list {
  margin-top: 40px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.c-item i {
  color: var(--gold);
}

.gold-form {
  background: var(--white);
  padding: 50px;
  border: 5px solid var(--cream);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  background: #fdfdfd;
  font-size: 1rem;
  transition: 0.3s;
}
.form-group input:focus {
  border-color: var(--gold);
  outline: none;
}
.form-check {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: #777;
}
.form-check a {
  text-decoration: underline;
  color: var(--navy);
}

/* Footer */
.footer {
  background: var(--navy);
  color: #888;
  padding: 80px 0 20px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}
.f-contact-btn {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.f-col h5 {
  color: var(--white);
  margin-bottom: 25px;
  font-family: var(--font-serif);
}
.f-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.f-col a:hover {
  color: var(--white);
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 25px;
  width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 5000;
  display: none;
  border-left: 5px solid var(--gold);
}
.btn-xs {
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .desk-nav,
  .h-actions .link-classic,
  .h-actions .btn-outline {
    display: none;
  }
  .burger {
    display: block;
  }
  .hero-grid,
  .text-columns,
  .split-layout,
  .contact-grid,
  .f-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-grid {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .image-frame {
    padding: 0;
  }
  .image-frame::before {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .cta-box::before {
    display: none;
  }
  .split-layout.reverse {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2.2rem;
  }
  .gold-form {
    padding: 30px 20px;
  }
}
.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
