:root {
  --ink: #1c1a17;
  --cream: #f6efe6;
  --vanilla: #fff6e7;
  --gold: #caa046;
  --berry: #7a2d43;
  --forest: #1f3a2f;
  --rose: #e8c7c0;
  --shadow: 0 18px 50px rgba(25, 18, 10, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1200px;
}

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

body {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 20%, #fdf3e1, #f5e7d2 45%, #ecd7bf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(26, 20, 12, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.25;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 239, 230, 0.82);
  border-bottom: 1px solid rgba(56, 36, 24, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.brand span {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--berry);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: rgba(202, 160, 70, 0.15);
  color: var(--berry);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.hero p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 13px;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--berry);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: rgba(60, 40, 30, 0.25);
  background: rgba(255, 255, 255, 0.65);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 80, 40, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(202, 160, 70, 0.45), transparent 70%);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--berry);
  background: rgba(202, 160, 70, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 28px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 3vw, 40px);
}

.section-title span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--berry);
}

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

.card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(88, 56, 24, 0.12);
  box-shadow: 0 12px 30px rgba(26, 16, 8, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
}

.card .chip {
  align-self: flex-start;
  background: rgba(122, 45, 67, 0.1);
  color: var(--berry);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge {
  background: var(--forest);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.gallery-item {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(250, 240, 230, 0.85), rgba(234, 210, 198, 0.75));
  border: 1px solid rgba(88, 56, 24, 0.1);
  box-shadow: 0 18px 40px rgba(25, 18, 10, 0.12);
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(122, 45, 67, 0.4), transparent 70%);
}

.gallery-item h4 {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.order-form {
  display: grid;
  gap: 24px;
}

fieldset {
  border: 1px solid rgba(90, 60, 30, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.75);
}

legend {
  padding: 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 18px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(90, 60, 30, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

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

.notice {
  background: rgba(122, 45, 67, 0.12);
  border: 1px dashed rgba(122, 45, 67, 0.4);
  padding: 16px;
  border-radius: 14px;
  font-size: 14px;
}

.callout {
  background: linear-gradient(140deg, rgba(122, 45, 67, 0.9), rgba(31, 58, 47, 0.85));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.callout h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
}

.footer {
  padding: 32px 28px 50px;
  text-align: center;
  font-size: 13px;
  color: rgba(40, 30, 20, 0.7);
}

.banner {
  background: linear-gradient(120deg, rgba(202, 160, 70, 0.8), rgba(232, 199, 192, 0.85));
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.banner a {
  font-weight: 600;
  border-bottom: 1px solid rgba(40, 30, 20, 0.5);
}

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

.owner-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(90, 60, 30, 0.18);
  box-shadow: 0 16px 32px rgba(26, 16, 8, 0.12);
}

.owner-card h4 {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.floating-note {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(202, 160, 70, 0.2);
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 52px;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: floatIn 0.8s ease both;
}
