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

:root {
  --cream: #f7f3ec;
  --ink: #272727;
  --gold: #b8935a;
  --gold-light: #e8d5b5;
  --muted: #7a7368;
  --border: rgba(28, 25, 21, 0.12);
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 448px;
  background: #0b1226;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 3rem 2rem 2rem;
}

.hero-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f7f3ec;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232, 213, 181, 0.7);
  max-width: 36ch;
  margin-bottom: 2.5rem;
}

@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    justify-content: center;
    padding: 2.5rem 1.5rem 1.5rem;
  }

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

  .hero-body {
    max-width: 100%;
  }
}

.hero-partner {
  height: 64px;
  width: auto;
  display: block;
}

.hero-content .btn-guide {
  color: #f7f3ec;
  border-color: rgba(247, 243, 236, 0.45);
}

.hero-content .btn-guide:hover {
  background: #f7f3ec;
  color: #0b1226;
  border-color: #f7f3ec;
}

/* ── MIDDLE SECTION ── */
.middle {
  padding: 4rem 2rem 5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.btn-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.btn-guide {
  display: inline-block;
  padding: 0.75rem 3rem;
  background: transparent;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.btn-guide:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── 3 SQUARES ── */
.squares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.square-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.square-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.square-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.square-item:hover .square-img img {
  transform: scale(1.07);
}

.square-text {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.square-sub {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer-partners-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  padding-top: 2.5rem;
}

footer {
  background: var(--ink);
  padding: 2.5rem 2rem 2rem;
}

.footer-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1080px;
  margin: 0 auto 2rem;
}

@media (max-width: 560px) {
  .footer-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.footer-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-img img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s;
}

.footer-img:hover img {
  transform: scale(1.05);
}

/* Footer bottom: logo LEFT, text RIGHT */

.footer-disclaimer {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 680px) {
  .footer-disclaimer {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.footer-disclaimer-logo {
  flex-shrink: 0;
}

.footer-disclaimer-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-disclaimer-text {
  font-size: 0.78rem;
  line-height: 1.7;
  color: #fff;
}

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.footer-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-text span {
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
