:root {
  --text: #111111;
  --muted: #666666;
  --border: #e5e5e5;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* Top banner */

.top-banner {
  text-align: center;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

/* Navigation */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.nav-links a {
  margin-left: 26px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-cta {
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  padding: 80px 60px 70px;
  gap: 40px;
  align-items: center;
}

.hero-inner {
  max-width: 520px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}

.btn-outline {
  display: inline-block;
  padding: 11px 26px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.hero-image {
  width: 100%;
  height: 460px;
  background: url("images/hero-image.jpg") center/cover no-repeat;
  border: 1px solid var(--border);
}

/* Sections */

.section {
  padding: 70px 60px;
  border-top: 1px solid var(--border);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
}

/* Collections */

.section-collections {
  background: #ffffff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.collection-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.collection-image {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

.collection-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 6px;
}

.collection-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.link-cta {
  font-size: 13px;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-cta:hover {
  opacity: 0.6;
}

/* Frames */

.section-frames {
  background: #fafafa;
}

.frames-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.frame-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.frame-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

.frame-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin-bottom: 4px;
}

.frame-meta {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}

.frame-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* Appointments */

.section-appointments {
  background: #ffffff;
}

.appointments-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.appointments-copy h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 12px;
}

.appointments-copy p {
  font-size: 15px;
  color: var(--muted);
}

.appointments-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 16px;
}

.appointments-list li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.appointments-list strong {
  color: #222;
}

.appointments-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.appointments-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

/* Craft */

.section-craft {
  background: #fafafa;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.craft-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.craft-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 6px;
}

.craft-item p {
  font-size: 14px;
  color: var(--muted);
}

/* Inquiry */

.section-inquiry {
  background: #ffffff;
}

.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #444;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #000;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px 24px;
  background: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 18px;
}

.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
}

.footer-links-group {
  display: flex;
  gap: 40px;
}

.footer-links-group h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}



.footer-links-group a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links-group a:hover {
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-size: 12px;
  color: #777;
}

.footer-bottom-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #777;
}

.footer-bottom-links a:hover {
  opacity: 0.6;
}

.footer-contact {
  margin-top: 12px;
}

.footer-contact p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-contact a {
  text-decoration: none;
  color: var(--muted);
}

.footer-contact a:hover {
  opacity: 0.6;
}

/* Responsive */

@media (max-width: 960px) {
  .nav {
    padding: 20px 20px;
  }

  .hero {
    padding: 60px 20px;
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 360px;
  }

  .section {
    padding: 60px 20px;
  }

  .collection-grid,
  .frames-grid,
  .craft-grid {
    grid-template-columns: 1fr;
  }

  .appointments-inner {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 28px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 18px;
  }

  .hero-title {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}