:root {
  --navy: #071724;
  --navy-2: #0c2233;
  --gold: #c9964d;
  --gold-2: #e5bd7b;
  --paper: #f4f1ea;
  --ink: #152330;
  --muted: #6e777e;
  --line: #d8d2c8;
  --white: #fff;
  --max: 1380px;
}

/* =========================
   RESET & BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, "Vazirmatn", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.wrap {
  width: min(calc(100% - 64px), var(--max));
  margin: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 74px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 18, 0.72),
    rgba(0, 10, 18, 0.05)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 700;
  border: 1px solid var(--gold);
}

.brand-copy strong {
  display: block;
  font-size: 17px;
}

.brand-copy small {
  display: block;
  color: #cbd3d8;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 16, 27, 0.96) 0%,
      rgba(3, 16, 27, 0.72) 42%,
      rgba(3, 16, 27, 0.15) 100%
    ),
    url("images/shiraz-hero.jpg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  min-height: 620px;
  padding-top: 74px;
  gap: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 11px;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.25;
}

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

.hero p {
  max-width: 650px;
  color: #d9e0e4;
  font-size: 14px;
}

.hero-note {
  padding-inline-start: 22px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 28px;
}

.hero-note span {
  color: #d8e0e5;
  font-size: 11px;
}

/* =========================
   INTRO
========================= */

.intro {
  padding: 54px 0 26px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head span {
  color: #9a6b34;
  font-size: 12px;
  font-weight: 700;
}

.section-head h2 {
  margin-top: 8px;
  font-size: 32px;
  line-height: 1.5;
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   GALLERY
========================= */

.gallery {
  padding: 30px 0 64px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.place-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.28s ease;
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 31, 44, 0.11);
}

.place-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: var(--navy-2);
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.place-card:hover .place-image img {
  transform: scale(1.04);
}

/* Placeholder shown when an image is unavailable */

.placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(201, 150, 77, 0.15),
      rgba(7, 23, 36, 0.75)
    ),
    linear-gradient(45deg, #20384b, #0d2232);
}

.placeholder span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-2);
  font-size: 11px;
}

.placeholder strong {
  font-size: 18px;
}

.place-body {
  padding: 18px 18px 20px;
}

.place-body small {
  color: #a06f34;
  font-size: 10px;
  font-weight: 700;
}

.place-body h3 {
  margin: 4px 0 7px;
  font-size: 20px;
}

.place-body p {
  color: #59636a;
  font-size: 11px;
  line-height: 1.95;
}

/* =========================
   QUOTE
========================= */

.quote {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  color: #fff;
  background: var(--navy-2);
}

.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(
    30deg,
    transparent 48%,
    #fff 49%,
    transparent 50%
  );
  background-size: 90px 90px;
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.quote h2 {
  font-size: 30px;
  line-height: 1.6;
}

.quote h2 em {
  color: var(--gold-2);
  font-style: normal;
}

.quote p {
  margin-top: 10px;
  color: #cbd6dc;
  font-size: 12px;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 30px 0;
  color: #fff;
  background: #03131f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer p {
  color: #9fb0ba;
  font-size: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 30px);
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .place-image {
    height: 260px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
