:root {
  --orange: #ff5700;
  --orange-dark: #e84f00;
  --ink: #191919;
  --muted: #6f6f6f;
  --line: #ebebeb;
  --white: #ffffff;
  --page: #fffdfb;
  --shadow: 0 16px 38px rgba(0, 0, 0, .08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1420px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #f0f0f0;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { flex: 0 0 auto; }
.brand img { width: auto; height: 80px; }
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}
.nav a {
  position: relative;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.nav a:hover::after,
.nav a.active::after { right: 0; }

.hero { background: var(--orange); }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 52px;
  align-items: center;
  padding: 30px 0;
}
.hero-photo {
  aspect-ratio: 3 / 2;
  background: #111;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  color: #fff;
  text-align: center;
  padding: 22px 20px;
}
.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .44);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero-copy p {
  margin: 8px 0;
  font-size: clamp(18px, 1.65vw, 22px);
}
.hero-copy .cta {
  display: inline-block;
  margin-top: 27px;
  min-width: 320px;
  padding: 18px 30px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
  transition: transform .2s ease, background .2s ease;
}
.hero-copy .cta:hover {
  transform: translateY(-2px);
  background: #fff8f4;
}

.gallery { padding: 60px 0 82px; }
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}
.section-intro h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -.035em;
}
.section-intro p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.project-count {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-5px);
  border-color: #ffc9ac;
  box-shadow: var(--shadow);
  outline: none;
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececec;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}
.card:hover .thumb img { transform: scale(1.035); }
.tour-tag {
  position: absolute;
  left: 13px;
  top: 13px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, .68);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-body { padding: 18px 18px 20px; }
.card-title {
  margin: 0 0 17px;
  min-height: 54px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-link::after { content: '→'; font-size: 16px; }

.site-footer {
  padding: 28px 0 34px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-left,
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--orange); }

@media (max-width: 1160px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-inner { gap: 35px; }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 15px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .brand img { height: 68px; }
  .nav { justify-content: flex-start; gap: 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 0 30px; }
  .hero-copy { padding: 0 10px 8px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-intro { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1420px); }
  .brand img { height: 55px; }
  .nav { gap: 15px; }
  .nav a { font-size: 12px; letter-spacing: .06em; }
  .hero-copy h1 { font-size: 39px; }
  .hero-copy p { font-size: 16px; }
  .hero-copy .cta { min-width: 0; width: 100%; }
  .gallery { padding-top: 42px; }
  .grid { grid-template-columns: 1fr; gap: 18px; }
  .card-title { min-height: 0; }
}
