:root {
  --bg: #e3d6c7;
  --surface: #f4ece3;
  --card: #fdf8f3;
  --text: #2b2119;
  --muted: #6f6257;
  --primary: #d9825b;
  --primary-strong: #b05e3d;
  --accent: #5a6c7a;
  --shadow: 0 12px 35px rgba(43, 33, 25, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(217, 130, 92, 0.2), transparent 38%),
              radial-gradient(circle at 80% 10%, rgba(90, 108, 122, 0.18), transparent 32%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  padding: 32px clamp(24px, 5vw, 80px) 120px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(90, 108, 122, 0.14), transparent 45%);
  pointer-events: none;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 236, 227, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(217, 130, 92, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43, 33, 25, 0.12);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: 80px;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: stretch;
}

.photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(217, 130, 92, 0.16), rgba(90, 108, 122, 0.1));
  border: 1px solid rgba(43, 33, 25, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.subtext {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 30px rgba(217, 130, 92, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(43, 33, 25, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: rgba(217, 130, 92, 0.35);
}

.btn.full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero-card {
  background: rgba(253, 248, 243, 0.9);
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card .label {
  color: var(--muted);
  margin: 0 0 12px;
}

.hero-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.section {
  padding: 100px clamp(24px, 5vw, 80px);
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 12px;
}

.section-subtext {
  color: var(--muted);
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card,
.service-card {
  background: var(--card);
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.about-card h3,
.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.about-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, rgba(244, 236, 227, 0.7), rgba(227, 214, 199, 0.9));
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-form {
  background: var(--card);
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 16px;
  padding: 24px;
  max-width: 100%;
  width: 100%;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-details {
  width: 100%;
}

.contact-card {
  background: var(--card);
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 12px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  border: 1px solid rgba(43, 33, 25, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface);
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a,
.contact-value {
  margin: 4px 0 0;
  display: block;
  color: var(--text);
  font-weight: 600;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(43, 33, 25, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(217, 130, 92, 0.6);
  box-shadow: 0 0 0 3px rgba(217, 130, 92, 0.18);
}

.form-feedback {
  margin: 8px 0 0;
  color: var(--primary);
  min-height: 22px;
}

.footer {
  padding: 32px clamp(24px, 5vw, 80px) 48px;
  border-top: 1px solid rgba(43, 33, 25, 0.08);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 420px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 20px;
  }

  .section {
    padding: 80px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
