/* Yellow — floral design studio. One stylesheet, no build step.
   Tokens below are trimmed from the "Organic" design system this
   page was originally generated with; only the values actually
   used on the page are kept. */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Figtree:wght@400;600;700&display=swap');

:root {
  --color-bg: #f5ead8;
  --color-text: #201e1d;
  --color-accent: #c67139;
  --color-accent-400: #f6a06b;
  --color-accent-600: #b2622d;
  --color-accent-700: #8c491a;
  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-500: #8fa073;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);

  --font-heading: "Instrument Serif", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2b25 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2b25 16%, transparent);

  --max-width: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  text-wrap: pretty;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; margin: 0; }

p { margin: 0; }

a { color: var(--color-accent-700); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--color-accent-600); text-decoration: underline; }

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

.muted { color: color-mix(in srgb, var(--color-text) 78%, transparent); }

.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent-700);
}

.washed { filter: saturate(0.6) contrast(0.85) brightness(1.1) opacity(0.94); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: border-box;
}

/* — buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
}
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); text-decoration: none; }
.btn-secondary { color: var(--color-text); border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); text-decoration: none; }

.input {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  min-width: 200px;
  border: 1px solid var(--color-divider);
  border-radius: 999px;
  padding: 13px 20px;
  background: #fff;
  color: var(--color-text);
}
.input:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* — header — */
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 600; }
.site-nav a:not(.btn) { color: var(--color-text); }
.site-nav a:not(.btn):hover { text-decoration: underline; }
.site-nav .btn { padding: 11px 22px; }

/* — hero — */
.hero {
  position: relative;
  overflow: clip;
  padding-top: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.hero-blob {
  position: absolute;
  right: 0;
  top: 0;
  width: min(400px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-accent-2-200);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.hero h1 span { display: block; }
.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  max-width: 46ch;
  margin-top: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-photo {
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  width: min(420px, 100%);
  justify-self: end;
  box-shadow: var(--shadow-md);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { justify-self: start; }
}

/* — services — */
.services { padding-top: clamp(32px, 4vw, 56px); padding-bottom: clamp(32px, 4vw, 56px); }
.services .eyebrow { margin-bottom: 32px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.service-dot { width: 20px; height: 20px; border-radius: 50%; margin-bottom: 18px; }
.service h2 { font-size: 27px; line-height: 1.15; }
.service p { font-size: 15.5px; line-height: 1.7; margin-top: 14px; }

/* — work — */
.work { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }
.work-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 28px;
  margin-bottom: 34px;
}
.work-header h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; }
.work-header span { font-size: 15px; color: color-mix(in srgb, var(--color-text) 65%, transparent); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.work-grid figure { margin: 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; }
.work-grid img { width: 100%; height: 100%; object-fit: cover; }

/* — studio — */
.studio {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.studio blockquote {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  max-width: 30ch;
  margin: 0;
}
.studio p { font-size: 15.5px; line-height: 1.7; margin-top: 30px; max-width: 52ch; }

/* — enquire — */
.enquire { padding-bottom: clamp(48px, 6vw, 80px); }
.enquire-card {
  background: var(--color-accent-2-100);
  border-radius: 40px;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.enquire-card h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.15; }
.enquire-card p { font-size: 15.5px; line-height: 1.7; margin-top: 16px; max-width: 42ch; }
.enquire-form { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.enquire-form .input { flex: 1; }
.enquire-form .btn { padding: 13px 26px; }

/* — footer — */
.site-footer {
  padding-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  font-size: 13.5px;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}
.site-footer img { height: 26px; width: auto; mix-blend-mode: multiply; }
.site-footer .spacer { flex: 1; }
