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

:root {
  --gold: #b8965a;
  --gold-light: #d4b07a;
  --cream: #f7f3ee;
  --dark: #1a1714;
  --mid: #3d3830;
  --text: #2c2820;
  --text-light: #7a7268;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo .logo-suite {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.15em;
}

.nav-logo .logo-cardinale {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/f62f15_2abf45c496ea44eaba23ef3c5fcda5f7~mv2_d_4109_1615_s_2.jpg/v1/crop/x_417,y_5,w_3692,h_1610/fill/w_1400,h_700,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/f62f15_2abf45c496ea44eaba23ef3c5fcda5f7~mv2_d_4109_1615_s_2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, rgba(26,23,20,0.3) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  max-width: 700px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

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

/* ─── HERO NOTICE ─── */
.hero-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(184, 150, 90, 0.15);
  border: 1px solid rgba(184, 150, 90, 0.5);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-notice svg {
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 2px;
}

.hero-notice p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  max-width: 480px;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--gold-light);
  gap: 1.25rem;
}

.hero-cta svg {
  width: 14px;
  height: 14px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 3rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

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

/* ─── INFO STRIP ─── */
.info-strip {
  background: var(--dark);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-strip a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

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

.info-strip .separator {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ─── TWO COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.col-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  z-index: -1;
}

.col-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(184, 150, 90, 0.15);
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--white);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-card ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(184, 150, 90, 0.1);
}

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

/* ─── CONTACT ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--text);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--gold); }

.contact-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--gold);
}

.map-embed {
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(30%) sepia(10%);
}

/* ─── FORM ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.3);
  padding: 0.7rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(184, 150, 90, 0.2);
}

.footer-brand .logo-suite {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.15em;
}

.footer-brand .logo-cardinale {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-brand .logo-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  text-transform: uppercase;
}

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

.footer-links a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 40vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 80%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

.page-hero-content .section-label { color: var(--gold); }

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
  }

  .section { padding: 4rem 1.5rem; }

  .hero-content { padding: 3rem 1.5rem; }

  .two-col, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col.reverse { direction: ltr; }

  .col-image img { height: 320px; }
  .col-image::before { display: none; }

  .info-strip {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .info-strip .separator { display: none; }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
