* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #d3caca;
  --panel: #efeeee;
  --white: #ffffff;
  --black: #111111;
  --text: #2a2a2a;
  --muted: #777777;
  --line: #d9d9d9;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

img {
  width: 100%;
  display: block;
}

.page-shell {
  width: min(1360px, 94%);
  margin: 36px auto;
}

.site-card {
  display: grid;
  grid-template-columns: 0.95fr 1.65fr;
  gap: 0;
  align-items: start;
}

/* LEFT PANEL */

.left-panel {
  background: #f3f2f2;
  padding: 22px 24px 24px;
}

.team-section {
  margin-bottom: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  background: transparent;
}

.team-image {
  background: #e8e8e8;
  padding: 0;
  height: 250px;
  overflow: hidden;
}

.team-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-label {
  background: #000;
  color: white;
  width: 82%;
  margin: -14px auto 0;
  position: relative;
  padding: 12px 10px 10px;
  text-align: center;
}

.team-label h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.team-label p {
  font-size: 0.58rem;
  margin-top: 3px;
  opacity: 0.85;
  letter-spacing: 0.6px;
}

.offer-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 230px;
  background: #fff;
  margin-bottom: 42px;
  overflow: hidden;
}

.offer-text {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-title {
  font-size: 0.86rem;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.offer-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1.06;
  font-weight: 600;
  margin-bottom: 22px;
}

.offer-text h2 span {
  font-weight: 700;
}

.offer-text button,
.dark-btn,
.discount-box button {
  width: fit-content;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 0.76rem;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.offer-image {
  height: 100%;
}

.offer-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.line {
  width: 22px;
  height: 2px;
  background: #111;
  margin: 8px auto 0;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr;
  gap: 12px;
  grid-auto-rows: 140px;
}

.lookbook-item {
  overflow: hidden;
  background: #ddd;
}

.lookbook-item img {
  height: 100%;
  object-fit: cover;
}

.lookbook-item.small {
  grid-row: span 1;
}

.lookbook-item.tall {
  grid-row: span 2;
}

.center-feature {
  grid-row: span 3;
}

.dark-card {
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=800&q=80")
    center/cover no-repeat;
  display: grid;
  place-items: center;
  grid-row: span 1;
}

.plus {
  color: white;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

/* RIGHT PANEL */

.right-panel {
  background: var(--panel);
}

.hero {
  position: relative;
  background: #ddd3d4;
  min-height: 730px;
  overflow: hidden;
  border-bottom-right-radius: 110px;
}

.navbar {
  height: 58px;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
  position: relative;
  z-index: 2;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: #111;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.68rem;
  color: #111;
  letter-spacing: 0.8px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
}

.nav-right a {
  text-decoration: none;
  color: #111;
  font-size: 0.72rem;
  letter-spacing: 0.7px;
}

.hero-content {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 672px;
  position: relative;
}

.hero-text {
  padding: 120px 34px 40px 54px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: 5.2rem;
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-text > p {
  color: #f1eaea;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.discount-box {
  margin-top: 76px;
  background: #000;
  color: white;
  width: 240px;
  padding: 24px 20px 22px;
}

.discount-box .visit {
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.discount-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}

.discount-box h3 span {
  font-size: 3rem;
}

.discount-box .service-name {
  font-size: 0.78rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.discount-box button {
  background: white;
  color: black;
}

.hero-image {
  height: 100%;
  position: relative;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.vertical-hours {
  position: absolute;
  right: 18px;
  top: 250px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #f8f4f4;
  z-index: 2;
}

.hero-arrows {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-arrows button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  cursor: pointer;
}

/* SERVICES */

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 52px 34px 56px;
  background: #f3f2f2;
}

.service-card {
  text-align: center;
  padding: 12px 16px;
}

.icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* BOTTOM */

.momentum-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #ecebeb;
  padding: 52px 44px;
}

.momentum-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.momentum-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 20px;
}

.momentum-text p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 22px;
}

.momentum-video {
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: center;
  align-self: center;
}

.momentum-video img {
  height: 240px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0,0,0,0.72);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .site-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 70px 34px 30px;
  }

  .hero-image {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .team-grid,
  .services-row,
  .momentum-section,
  .offer-banner {
    grid-template-columns: 1fr;
  }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 3.6rem;
  }

  .vertical-hours {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: 96%;
    margin: 18px auto;
  }

  .left-panel,
  .services-row,
  .momentum-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .lookbook-item,
  .lookbook-item.tall,
  .lookbook-item.small,
  .center-feature {
    grid-row: span 1;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    border-bottom-right-radius: 50px;
  }

  .navbar {
    padding: 0 18px;
  }

  .nav-right a {
    display: none;
  }

  .hero-text {
    padding: 46px 20px 24px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .momentum-text h2,
  .offer-text h2,
  .section-heading h2 {
    font-size: 2rem;
  }
}