:root {
  --bg: #f9f6f2;
  --sand: #e9dfd4;
  --blush: #f4d7d1;
  --rose: #df8d8d;
  --deep: #0f3d3e;
  --green: #2e5f59;
  --accent: #cfa27a;
  --text: #1c1b1a;
  --muted: #5f5a57;
  --shadow: 0 15px 45px rgba(15, 61, 62, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(244, 215, 209, 0.3), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(46, 95, 89, 0.25), transparent 30%),
    radial-gradient(circle at 60% 70%, rgba(207, 162, 122, 0.18), transparent 32%),
    var(--bg);
  line-height: 1.65;
  padding: 32px;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 246, 242, 0.9);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border: 1px solid rgba(15, 61, 62, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
  width: 100%;
}

.logo {
  font-family: "Playfair Display", "Work Sans", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--deep);
}

.navbar ul {
  display: flex;
  gap: 18px;
  list-style: none;
  font-weight: 500;
}

.navbar a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.navbar a:hover {
  color: var(--deep);
  background: rgba(46, 95, 89, 0.08);
}

.navbar .ghost-btn {
  margin-left: 12px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  padding: 40px 0;
}

.hero__content h1 {
  font-family: "Playfair Display", "Work Sans", serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  margin: 12px 0 16px;
  color: var(--deep);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.lede {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin: 12px 0 22px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.link-btn {
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(120deg, var(--deep), var(--green));
  color: #fff;
  box-shadow: var(--shadow);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(15, 61, 62, 0.25);
}

.ghost-btn {
  background: rgba(46, 95, 89, 0.1);
  color: var(--deep);
  border: 1px solid rgba(15, 61, 62, 0.12);
}

.ghost-btn:hover {
  background: rgba(46, 95, 89, 0.16);
}

.link-btn {
  background: transparent;
  color: var(--deep);
  padding-left: 6px;
  padding-right: 6px;
  border-bottom: 2px solid var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.stats strong {
  display: block;
  font-size: 22px;
  color: var(--deep);
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  justify-items: center;
}

.card {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  transform: rotate(var(--card-rotation));
  transition: transform 0.2s ease;
}

.card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.shadow {
  box-shadow: var(--shadow);
}

.will-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 36px 0;
}

.section__header {
  max-width: 760px;
  margin-bottom: 24px;
}

.section h2 {
  font-family: "Playfair Display", "Work Sans", serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--deep);
  margin: 6px 0 10px;
}

.grid {
  display: grid;
  gap: 18px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tile figcaption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  padding: 8px 12px;
  background: rgba(15, 61, 62, 0.82);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(244, 215, 209, 0.4), rgba(233, 223, 212, 0.9));
  border: 1px solid rgba(15, 61, 62, 0.08);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-family: "Playfair Display", "Work Sans", serif;
  margin-bottom: 8px;
  color: var(--deep);
}

.studio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
}

.studio__image img {
  height: 100%;
  object-fit: cover;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  background: rgba(46, 95, 89, 0.12);
  color: var(--deep);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  border: 1px solid rgba(15, 61, 62, 0.12);
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(240px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.contact__card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 61, 62, 0.08);
}

.contact__form {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  color: var(--deep);
}

input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 62, 0.14);
  background: rgba(249, 246, 242, 0.7);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(15, 61, 62, 0.35);
  background: #fff;
}

.full {
  width: 100%;
}

.contact__info {
  display: grid;
  gap: 12px;
  padding: 10px 0;
}

.info-block h3 {
  font-family: "Playfair Display", "Work Sans", serif;
  color: var(--deep);
  margin-bottom: 4px;
}

.muted {
  color: var(--muted);
}

.footer {
  margin-top: 36px;
  padding: 18px;
  background: rgba(15, 61, 62, 0.08);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--deep);
}

.footer__note {
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    padding: 22px;
  }

  .navbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .navbar ul {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }

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